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 9d82cda commit 65a197bCopy full SHA for 65a197b
package.json
@@ -32,6 +32,7 @@
32
"test:type-check": "tsc --noEmit",
33
"type-check": "tsc --noEmit && npm run type-check -ws --if-present",
34
"release": "npm run build && changeset publish",
35
+ "reset": "script/reset",
36
"size": "size-limit"
37
},
38
"author": "GitHub, Inc.",
script/reset
@@ -0,0 +1,10 @@
1
+#!/bin/bash
2
+
3
+# Remove all build folders, node_modules folders
4
+npm run clean:all
5
6
+# Install latest dependencies from lockfile
7
+npm install
8
9
+# Build packages
10
+npm build
0 commit comments