impactus-swarm 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of impactus-swarm might be problematic. Click here for more details.
- package/bin/cli.js +1 -5
- package/package.json +1 -1
- package/web/assets/index-qYpaUdCG.js +2019 -0
- package/web/index.html +1 -1
package/bin/cli.js
CHANGED
|
@@ -99,11 +99,7 @@ if (!existsSync(webDir)) {
|
|
|
99
99
|
process.exit(1);
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
//
|
|
103
|
-
process.env.IMPACTUS_WEB_DIR = webDir;
|
|
104
|
-
process.env.PORT = String(port);
|
|
105
|
-
|
|
106
|
-
// Fork the server
|
|
102
|
+
// Fork the server — PORT and IMPACTUS_WEB_DIR are passed via env below (not on process.env to avoid polluting parent)
|
|
107
103
|
const serverArgs = [];
|
|
108
104
|
if (!noOpen) serverArgs.push("--open");
|
|
109
105
|
|