persona-community-5/.pnpm-store/v3/files/fe/8458cd582bac84904e85dc143d0b432b30b82f9850fd7e65522eec74fccd222f6d2db8e78880d1ad7d88de47fee1f6d8034e5ef6631880ec30a5db80b2147c
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

18 lines
502 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.InfoLicense = void 0;
const utils_1 = require("../utils");
const InfoLicense = () => {
return {
Info(info, { report }) {
if (!info.license) {
report({
message: (0, utils_1.missingRequiredField)('Info', 'license'),
location: { reportOnKey: true },
});
}
},
};
};
exports.InfoLicense = InfoLicense;