We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7817a8 commit cfe2c52Copy full SHA for cfe2c52
2 files changed
package.json
@@ -3,12 +3,13 @@
3
"version": "1.0.0",
4
"repository": "git@github.com:zendesk/copenhagen_theme.git",
5
"scripts": {
6
- "start": "rollup -c -w",
+ "start": "concurrently -k -r 'rollup -c -w' 'wait-on script.js style.css && zcli themes:preview'",
7
"build": "rollup -c",
8
"eslint": "eslint src",
9
"prepare": "husky install",
10
"download-locales": "node ./bin/update-translations",
11
- "test-a11y": "node bin/lighthouse/index.js"
+ "test-a11y": "node bin/lighthouse/index.js",
12
+ "zcli": "zcli"
13
},
14
"dependencies": {
15
"node-fetch": "2.6.9"
rollup.config.mjs
@@ -7,4 +7,7 @@ export default {
format: "iife",
plugins: [zass()],
+ watch: {
+ clearScreen: false,
+ },
};
0 commit comments