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 5681c1e commit ebc17deCopy full SHA for ebc17de
rebuild-all.js
@@ -111,15 +111,14 @@ function buildFramework(framework) {
111
// execSync(`rm -r ${path}`);
112
// }
113
// rsync(keyed,name);
114
- const filesToDelete = [
+ let filesToDelete = ((useCi) ? [] : ["package-lock.json"]).concat([
115
"yarn-lock",
116
"dist",
117
"elm-stuff",
118
"bower_components",
119
"node_modules",
120
"output",
121
- useCi ? "" : "package-lock.json",
122
- ];
+ ]);
123
124
deleteFrameworkFiles(frameworkPath, filesToDelete);
125
0 commit comments