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 fbcd81e commit aae6889Copy full SHA for aae6889
package.json
@@ -24,8 +24,11 @@
24
"scripts": {
25
"build": "tsup",
26
"postbuild": "mkdir -p ./dist/umd/ && cp -pR ./dist/iife/* ./dist/umd",
27
- "lint": "eslint ./src",
28
- "lint:fix": "eslint --fix ./src",
+ "lint": "eslint ./src ./tests",
+ "lint:fix": "eslint --fix ./src ./tests",
29
+ "format": "prettier --check ./src ./tests",
30
+ "format:fix": "prettier --write ./src ./tests",
31
+ "typecheck": "tsc --noEmit",
32
"test": "jest --coverage=false",
33
"test:coverage": "jest --coverage=true"
34
},
0 commit comments