We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13b797f commit 237441bCopy full SHA for 237441b
src/job-validator.js
@@ -2,14 +2,14 @@ const fs = require('node:fs');
2
const { join } = require('node:path');
3
const combineErrors = require('combine-errors');
4
const isInvalidPath = require('is-invalid-path');
5
+const { default: cron } = require('cron-validate');
6
const {
7
getName,
8
isSANB,
9
isSchedule,
10
parseValue,
11
getJobPath
12
} = require('./job-utils');
-const { default: cron } = require('cron-validate');
13
14
const validateReservedJobName = (name) => {
15
// Don't allow a job to have the `index` file name
0 commit comments