persona-community-5/.pnpm-store/v3/files/58/cf9a8c3d8cb26c66afe8898bf1dea2f573589ed72581583296ea94c7048ed42a503354c6986450abc065c69c49c6a675bd9284a748314b5b226298222e930a
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

19 lines
623 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SourceDescriptionsNotEmpty = void 0;
const SourceDescriptionsNotEmpty = () => {
return {
SourceDescriptions: {
enter(sourceDescriptions, { report, location }) {
if (!sourceDescriptions?.length) {
report({
message: 'The `sourceDescriptions` list must have at least one entry.',
location,
});
}
},
},
};
};
exports.SourceDescriptionsNotEmpty = SourceDescriptionsNotEmpty;