|
14 | 14 | "test": "run-s -s test:e2e \"test:unit -- {@}\" --", |
15 | 15 | "test:prepare": "npm run test:e2e -- --prepareOnly", |
16 | 16 | "test:e2e": "node scripts/e2e.js", |
17 | | - "test:unit": "jest", |
| 17 | + "test:unit": "node_modules/.bin/jest", |
18 | 18 | "test:external": "node scripts/test-external-project.js", |
19 | 19 | "lint": "run-s lint:ts lint:js", |
20 | | - "lint:js": "eslint . -f stylish", |
21 | | - "lint:ts": "tslint -t stylish --project .", |
| 20 | + "lint:js": "node_modules/.bin/eslint . -f stylish", |
| 21 | + "lint:ts": "node_modules/.bin/tslint -t stylish --project .", |
22 | 22 | "lint:fix": "run-s lint:fix:ts lint:fix:js", |
23 | | - "lint:fix:js": "eslint . --fix", |
24 | | - "lint:fix:ts": "tslint --fix --project .", |
25 | | - "typecheck": "tsc -p . --noEmit", |
| 23 | + "lint:fix:js": "node_modules/.bin/eslint . --fix", |
| 24 | + "lint:fix:ts": "node_modules/.bin/tslint --fix --project .", |
| 25 | + "typecheck": "node_modules/.bin/tsc -p .", |
26 | 26 | "doc": "cd docs && bundle exec jekyll serve --livereload", |
27 | 27 | "doc:link": "git worktree add docs/_site gh-pages", |
28 | 28 | "doc:unlink": "git worktree prune", |
29 | 29 | "doc:build": "cd docs && bundle exec jekyll build", |
30 | 30 | "doc:build-commit": "npm run doc:build && cd docs/_site && git add --all && git commit -m \"Updates github pages\"", |
| 31 | + "changelog": "node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s -r 0", |
31 | 32 | "prepare": "npm run build", |
32 | 33 | "prepublishOnly": "npm run test", |
33 | | - "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0", |
34 | | - "commitmsg": "commitlint -E GIT_PARAMS", |
35 | | - "precommit": "lint-staged", |
| 34 | + "commitmsg": "node_modules/.bin/commitlint -E GIT_PARAMS", |
| 35 | + "precommit": "node_modules/.bin/lint-staged", |
36 | 36 | "postcommit": "git reset", |
37 | 37 | "preversion": "npm run test", |
38 | 38 | "version": "npm run changelog && git add CHANGELOG.md" |
|
0 commit comments