bob-the-bundler
Version:
Bob The Bundler!
36 lines (35 loc) • 1.42 kB
JavaScript
import zod from 'zod';
const BobConfigModel = zod.optional(zod.union([
zod.literal(false),
zod.object({
commonjs: zod.optional(zod.literal(false), {
description: 'Omit CommonJS output.',
}),
build: zod.union([
zod.literal(false),
zod.optional(zod.object({
copy: zod.optional(zod.array(zod.string()), {
description: 'Specify a list of files that should be copied the the output directory.',
}),
})),
], {
description: 'Build configuration. Set to false for skipping the build of this package.',
}),
check: zod.optional(zod.union([
zod.literal(false),
zod.object({
skip: zod.optional(zod.array(zod.string()), {
description: 'Skip certain files from being checked. E.g. modules with side-effects.',
}),
}),
]), {
description: 'Check whether the built packages comply with the standards. (ESM & CJS compatible and loadable and Node.js engines specified)',
}),
}),
], {
description: 'Bob configuration. Set this value to false in order to disable running bob on this package.',
}));
export function getBobConfig(packageJson) {
var _a;
return BobConfigModel.parse((_a = packageJson.bob) !== null && _a !== void 0 ? _a : {});
}