Skip to content

Commit 43c38b0

Browse files
committed
fix building all frameworks
1 parent de14372 commit 43c38b0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,10 @@ This installs just a few top level dependencies for the building the frameworks
142142
```
143143
npm ci
144144
```
145+
Then install the server:
146+
```
147+
npm run install-server
148+
```
145149

146150
We start the local web server in the root directory
147151

rebuild-all.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ const filesToDelete = [
4747
"bower_components",
4848
"node_modules",
4949
"output",
50-
useCi && "package-lock.json",
51-
].filter(Boolean);
50+
].concat(useCi ? [] : ["package-lock.json"]);
5251

5352
/**
5453
* @typedef {Object} Framework

0 commit comments

Comments
 (0)