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 024ba3e commit 3541830Copy full SHA for 3541830
package.json
@@ -28,8 +28,10 @@
28
"test:visual": "reg-suit -v run",
29
"type-check": "tsc --noEmit",
30
"type-check:watch": "npm run type-check -- --watch",
31
- "format": "npm run lint:src -- --fix && npm run lint:stories -- --fix && npm run lint:test -- --fix",
32
- "lint": "npm run lint:src && npm run lint:stories",
+ "format": "run-p format:src format:stories",
+ "format:src": "npm run lint:src -- --fix",
33
+ "format:stories": "npm run lint:stories -- --fix",
34
+ "lint": "run-p lint:src lint:stories",
35
"lint:src": "eslint --ext .ts,.tsx src/scripts/**",
36
"lint:stories": "eslint --ext .ts,.tsx stories/**",
37
"build": "run-p build:lib build:module build:types",
0 commit comments