We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dd715c commit 8fb498aCopy full SHA for 8fb498a
1 file changed
package.json
@@ -23,8 +23,9 @@
23
"pretest": "ts-node --transpile-only ./build_lualib.ts",
24
"test": "jest",
25
"lint": "npm run lint:tslint && npm run lint:prettier",
26
- "lint:prettier": "prettier --check **/*.{js,ts,yml,json} || (echo 'Run `npm run lint:prettier -- --write` or `yarn lint:prettier --write` to fix it.' && exit 1)",
+ "lint:prettier": "prettier --check **/*.{js,ts,yml,json} || (echo 'Run `npm run fix:prettier` to fix it.' && exit 1)",
27
"lint:tslint": "tslint -p . && tslint -p test && tslint src/lualib/*.ts",
28
+ "fix:prettier": "prettier --check --write **/*.{js,ts,yml,json}",
29
"release-major": "npm version major",
30
"release-minor": "npm version minor",
31
"release-patch": "npm version patch",
0 commit comments