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 de14372 commit 43c38b0Copy full SHA for 43c38b0
README.md
@@ -142,6 +142,10 @@ This installs just a few top level dependencies for the building the frameworks
142
```
143
npm ci
144
145
+Then install the server:
146
+```
147
+npm run install-server
148
149
150
We start the local web server in the root directory
151
rebuild-all.js
@@ -47,8 +47,7 @@ const filesToDelete = [
47
"bower_components",
48
"node_modules",
49
"output",
50
- useCi && "package-lock.json",
51
-].filter(Boolean);
+].concat(useCi ? [] : ["package-lock.json"]);
52
53
/**
54
* @typedef {Object} Framework
0 commit comments