Skip to content

Commit

Permalink
fix(init): trim --print-name option from npm-run-all (#218)
Browse files Browse the repository at this point in the history
Giving both `--print-name` and `--print-label` options is too verbose.
  • Loading branch information
ybiquitous committed Jul 9, 2018
1 parent 4e09154 commit 2ceeb86
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"lint:js:fix": "npm run lint:js -- --fix",
"lint:md": "markdownlint --ignore node_modules --ignore CHANGELOG.md \"**/*.md\"",
"lint:md:fix": "prettier --write \"**/*.md\"",
"lint": "npm-run-all --print-name --print-label --parallel lint:*",
"lint": "npm-run-all --print-label --parallel lint:*",
"commitmsg": "commitlint -E GIT_PARAMS",
"precommit": "lint-staged",
"release": "standard-version",
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/package-empty_expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"lint:js:fix": "npm run lint:js -- --fix",
"lint:md": "markdownlint --ignore node_modules --ignore CHANGELOG.md \"**/*.md\"",
"lint:md:fix": "prettier --write \"**/*.md\"",
"lint": "npm-run-all --print-name --print-label --parallel lint:*",
"lint": "npm-run-all --print-label --parallel lint:*",
"commitmsg": "commitlint -E GIT_PARAMS",
"precommit": "lint-staged",
"release": "standard-version",
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/package-normal_expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"lint:js:fix": "npm run lint:js -- --fix",
"lint:md": "markdownlint --ignore node_modules --ignore CHANGELOG.md \"**/*.md\"",
"lint:md:fix": "prettier --write \"**/*.md\"",
"lint": "npm-run-all --print-name --print-label --parallel lint:*",
"lint": "npm-run-all --print-label --parallel lint:*",
"commitmsg": "commitlint -E GIT_PARAMS",
"precommit": "lint-staged",
"release": "standard-version",
Expand Down

0 comments on commit 2ceeb86

Please sign in to comment.