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 aebe91e commit fe580b6Copy full SHA for fe580b6
package.json
@@ -16,12 +16,13 @@
16
"build:server": "tsc -d",
17
"clean": "shx rm -rf dist && mkdir dist",
18
"format": "prettier \"**/*.ts\" --write",
19
+ "format-check": "prettier \"**/*.ts\" --check",
20
"lint": "eslint src/*.ts test/*.ts",
21
"tdd": "concurrently -r -p '' -k 'npm run watch' 'npm run watch:test'",
22
"test": "npm run pre-test && ava --timeout=300s --verbose",
23
"stresstest": "seq 1 10 | xargs -I{} npm test",
24
"prepublishOnly": "npm test",
- "pre-test": "npm run clean && npm run build:server",
25
+ "pre-test": "npm run clean && npm run format-check && npm run build:server",
26
"watch": "tsc -w",
27
"watch:test": "ava -w"
28
},
0 commit comments