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 1ba482a commit 1efdb9aCopy full SHA for 1efdb9a
1 file changed
package.json
@@ -21,10 +21,11 @@
21
"scripts": {
22
"build": "babel --out-dir=dist source",
23
"dev": "babel --out-dir=dist --watch source",
24
- "clean": "rm -rf",
25
- "setup": "npm run setup:ubuntu",
26
- "setup:ubuntu": "npm run clean && npm run build && npm i -g .",
27
- "setup:windows":"rmdir /s /q dist && yarn build",
+ "clean:ubuntu": "rm -rf dist",
+ "clean:windows": "rmdir /s /q dist",
+ "setup": "npm run setup:ubuntu || npm run setup:windows",
+ "setup:ubuntu": "npm run clean:ubuntu && npm run build && npm i -g .",
28
+ "setup:windows":"npm run clean:windows && npm run build",
29
"reset": "npm run reset:ubuntu",
30
"reset:ubuntu": "npm uninstall -g magicc && npm run setup:ubuntu",
31
"test": "prettier --check . && xo && ava"
0 commit comments