Skip to content

Commit

Permalink
fix: remove console
Browse files Browse the repository at this point in the history
  • Loading branch information
xiefengnian committed Nov 12, 2021
1 parent 68cefae commit cf0272c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/father-build/src/getUserConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export default function({ cwd, customPath }: { cwd: string; customPath?: string
const userConfigs = Array.isArray(userConfig) ? userConfig : [userConfig];
userConfigs.forEach((userConfig) => {
const ajv = extendAjv(new AJV({ allErrors: true }));
console.log(1);
const isValid = ajv.validate(schema, userConfig);
if (!isValid) {
const errors = ajv.errors.map(({ dataPath, message }, index) => {
Expand Down

0 comments on commit cf0272c

Please sign in to comment.