Skip to content

Commit

Permalink
chore(package): ensure local versions of binaries are used
Browse files Browse the repository at this point in the history
  • Loading branch information
huafu committed Sep 22, 2018
1 parent a6bcec4 commit a1b77a1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions package.json
Expand Up @@ -14,25 +14,25 @@
"test": "run-s -s test:e2e \"test:unit -- {@}\" --",
"test:prepare": "npm run test:e2e -- --prepareOnly",
"test:e2e": "node scripts/e2e.js",
"test:unit": "jest",
"test:unit": "node_modules/.bin/jest",
"test:external": "node scripts/test-external-project.js",
"lint": "run-s lint:ts lint:js",
"lint:js": "eslint . -f stylish",
"lint:ts": "tslint -t stylish --project .",
"lint:js": "node_modules/.bin/eslint . -f stylish",
"lint:ts": "node_modules/.bin/tslint -t stylish --project .",
"lint:fix": "run-s lint:fix:ts lint:fix:js",
"lint:fix:js": "eslint . --fix",
"lint:fix:ts": "tslint --fix --project .",
"typecheck": "tsc -p . --noEmit",
"lint:fix:js": "node_modules/.bin/eslint . --fix",
"lint:fix:ts": "node_modules/.bin/tslint --fix --project .",
"typecheck": "node_modules/.bin/tsc -p .",
"doc": "cd docs && bundle exec jekyll serve --livereload",
"doc:link": "git worktree add docs/_site gh-pages",
"doc:unlink": "git worktree prune",
"doc:build": "cd docs && bundle exec jekyll build",
"doc:build-commit": "npm run doc:build && cd docs/_site && git add --all && git commit -m \"Updates github pages\"",
"changelog": "node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"commitmsg": "commitlint -E GIT_PARAMS",
"precommit": "lint-staged",
"commitmsg": "node_modules/.bin/commitlint -E GIT_PARAMS",
"precommit": "node_modules/.bin/lint-staged",
"postcommit": "git reset",
"preversion": "npm run test",
"version": "npm run changelog && git add CHANGELOG.md"
Expand Down

0 comments on commit a1b77a1

Please sign in to comment.