Skip to content

Commit c5ce694

Browse files
committed
Removed process.exit call
There's no need for the build process to stop after making the npm-container directory. Meteor will automatically restart the build when it detects the addition to .meteor/packages. I've tested that the declared npm modules in package.json are brought in when running `meteor` in development and `meteor build` for production
1 parent 6cdb2b6 commit c5ce694

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

plugin/init_npm.js

-6
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,6 @@ if(canProceed() && !fs.existsSync(npmContainerDir)) {
2929

3030
// add new container as a package
3131
echo.sync("\nnpm-container", ">>", ".meteor/packages");
32-
33-
console.log();
34-
console.log("-> npm support has been initialized.");
35-
console.log("-> please start your app again.");
36-
console.log();
37-
process.exit(0);
3832
}
3933

4034
// check whether is this `meteor test-packages` or not

0 commit comments

Comments
 (0)