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 093d369 commit c48ff3eCopy full SHA for c48ff3e
Makefile
@@ -37,6 +37,11 @@ stamp-yarn install:
37
touch stamp-yarn
38
39
40
+.PHONY: watch
41
+watch: stamp-yarn
42
+ $(YARN) watch
43
+
44
45
.PHONY: build
46
build: bundle css
47
package.json
@@ -55,7 +55,8 @@
55
"build:dev": "BUILD_ENV=patternslib NODE_ENV=development webpack --config webpack/webpack.config.js",
56
"build:stats": "BUILD_ENV=patternslib NODE_ENV=production webpack --config webpack/webpack.config.js --json > stats.json",
57
"test": "jest",
58
- "testwatch": "jest --watch"
+ "testwatch": "jest --watch",
59
+ "watch": "BUILD_ENV=patternslib NODE_ENV=development webpack --config webpack/webpack.config.js --watch"
60
},
61
"engines": {
62
"node": ">=12.20.0"
0 commit comments