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 3140fdd commit db9dd48Copy full SHA for db9dd48
lib/broccoli/fastboot-config.js
@@ -195,6 +195,11 @@ module.exports = class FastBootConfig extends Plugin {
195
path.join(this.outputPath, 'package-lock.json')
196
);
197
198
+ fs.renameSync(
199
+ path.join(tmpFolder, 'node_modules'),
200
+ path.join(this.outputPath, 'node_modules')
201
+ );
202
+
203
const removeTmpFolder = new Promise((resolve, reject) => {
204
rimraf(tmpFolder, (error) => {
205
if (error) {
0 commit comments