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 40d0da0 commit 14b884fCopy full SHA for 14b884f
package.json
@@ -14,11 +14,18 @@
14
"trailingComma": "es5"
15
},
16
"scripts": {
17
- "prepublishOnly": "node scripts/build.js"
+ "dev": "concurrently \"npm run serve\" \"npm run watch\"",
18
+ "serve": "live-server .",
19
+ "watch": "chokidar \"./src/**/*.js\" -c \"npm run build\"",
20
+ "build": "node scripts/build.js",
21
+ "prepublishOnly": "npm run build"
22
23
"devDependencies": {
24
"autoprefixer": "^10.0.2",
25
+ "chokidar-cli": "^2.1.0",
26
"clean-css": "^4.2.1",
27
+ "concurrently": "^5.3.0",
28
+ "live-server": "^1.2.1",
29
"postcss": "^8.1.7",
30
"tailwindcss": "^2.0.0-alpha.25"
31
0 commit comments