Skip to content

Commit

Permalink
chore: refactor fix command
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Apr 2, 2021
1 parent b8c7ff1 commit 5fcb302
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
},
"scripts": {
"lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different",
"lint:prettier:fix": "npm run lint:prettier -- --write",
"lint:js": "eslint . --cache",
"lint:js:fix": "npm run lint:js -- --fix",
"lint": "npm-run-all -l -p \"lint:**\"",
"lint:fix": "npm run lint:prettier:fix && npm run lint:js:fix",
"lint:type": "tsc --noEmit",
"fix:prettier": "npm run lint:prettier -- --write",
"fix:js": "npm run lint:js -- --fix",
"fix": "npm-run-all fix:js fix:prettier",
"commitlint": "commitlint --from=master",
"test:only": "jest --forceExit",
"test:coverage": "npm run test:only -- --coverage",
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/multi-public-path-config/baz.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
'use strict';

console.log('Hey.');
console.log('Hey.');

0 comments on commit 5fcb302

Please sign in to comment.