adding dist

This commit is contained in:
Federico Builes
2022-06-15 05:21:16 +02:00
parent dfd519642f
commit faa63c3cba
2 changed files with 3 additions and 3 deletions

4
dist/index.js generated vendored
View File

@@ -318,7 +318,7 @@ exports.ConfigurationOptionsSchema = z
deny_licenses: z.array(z.string()).default([])
})
.partial()
.refine(obj => !(obj.allow_licenses && obj.deny_licenses), "Can't specify both allow_licenses and deny_licenses");
.refine(obj => !(obj.allow_licenses && obj.deny_licenses), "Your workflow file has both an allow_licenses list and deny_licenses list, but you can only set one or the other.");
exports.ChangesSchema = z.array(exports.ChangeSchema);
@@ -13826,7 +13826,7 @@ exports.ConfigurationOptionsSchema = z
deny_licenses: z.array(z.string()).default([])
})
.partial()
.refine(obj => !(obj.allow_licenses && obj.deny_licenses), "Can't specify both allow_licenses and deny_licenses");
.refine(obj => !(obj.allow_licenses && obj.deny_licenses), "Your workflow file has both an allow_licenses list and deny_licenses list, but you can only set one or the other.");
exports.ChangesSchema = z.array(exports.ChangeSchema);

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long