velocious 1.0.422 → 1.0.423

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -3,21 +3,22 @@
3
3
  "velocious": "build/bin/velocious.js"
4
4
  },
5
5
  "name": "velocious",
6
- "version": "1.0.422",
6
+ "version": "1.0.423",
7
7
  "main": "build/index.js",
8
8
  "types": "build/index.d.ts",
9
9
  "files": [
10
10
  "build/**"
11
11
  ],
12
12
  "scripts": {
13
- "all-checks": "npm run typecheck && npm run lint && npm run test",
13
+ "all-checks": "npm run lint && npm run test",
14
14
  "build": "node scripts/clean-build.js && npm run compile",
15
15
  "compile": "tsc -b && npm run copy:ejs && npm run copy:templates && node scripts/ensure-bin-executable.js",
16
16
  "copy:ejs": "cpy \"src/routes/**/*.ejs\" build/src/routes",
17
17
  "copy:templates": "cpy \"src/templates/**/*.js\" build/src/templates",
18
18
  "fallow": "fallow dead-code --baseline fallow-baselines/dead-code.json --fail-on-issues --quiet && fallow dupes --baseline fallow-baselines/dupes.json --fail-on-issues --quiet && fallow health --baseline fallow-baselines/health.json --quiet",
19
19
  "fallow:baseline": "fallow dead-code --save-baseline fallow-baselines/dead-code.json && fallow dupes --save-baseline fallow-baselines/dupes.json && fallow health --save-baseline fallow-baselines/health.json",
20
- "lint": "eslint",
20
+ "eslint": "eslint",
21
+ "lint": "npm run eslint && npm run typecheck && npm run fallow",
21
22
  "prepare": "npm run build",
22
23
  "release:patch": "release-patch",
23
24
  "test": "node scripts/run-tests.js",