Skip to content

Commit a1b77a1

Browse files
committed
chore(package): ensure local versions of binaries are used
1 parent a6bcec4 commit a1b77a1

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@
1414
"test": "run-s -s test:e2e \"test:unit -- {@}\" --",
1515
"test:prepare": "npm run test:e2e -- --prepareOnly",
1616
"test:e2e": "node scripts/e2e.js",
17-
"test:unit": "jest",
17+
"test:unit": "node_modules/.bin/jest",
1818
"test:external": "node scripts/test-external-project.js",
1919
"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 .",
2222
"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 .",
2626
"doc": "cd docs && bundle exec jekyll serve --livereload",
2727
"doc:link": "git worktree add docs/_site gh-pages",
2828
"doc:unlink": "git worktree prune",
2929
"doc:build": "cd docs && bundle exec jekyll build",
3030
"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",
3132
"prepare": "npm run build",
3233
"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",
3636
"postcommit": "git reset",
3737
"preversion": "npm run test",
3838
"version": "npm run changelog && git add CHANGELOG.md"

0 commit comments

Comments
 (0)