@joystick.js/cli-canary 0.0.0-canary.167 → 0.0.0-canary.169
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.
- package/dist/lib/dev/startApp.js +1 -13
- package/package.json +1 -1
- package/src/lib/dev/startApp.js +1 -13
package/dist/lib/dev/startApp.js
CHANGED
|
@@ -4,19 +4,7 @@ const handleStartServerProcess = (execArgv = {}, sessionsBeforeHMRUpdate = {}) =
|
|
|
4
4
|
try {
|
|
5
5
|
process.loader.text("Starting app...");
|
|
6
6
|
console.log({
|
|
7
|
-
|
|
8
|
-
// NOTE: Pipe stdin, stdout, and stderr. IPC establishes a message channel so we
|
|
9
|
-
// communicate with the child_process.
|
|
10
|
-
silent: true,
|
|
11
|
-
env: {
|
|
12
|
-
FORCE_COLOR: "1",
|
|
13
|
-
LOGS_PATH: process.env.LOGS_PATH,
|
|
14
|
-
NODE_ENV: process.env.NODE_ENV,
|
|
15
|
-
ROOT_URL: process.env.ROOT_URL,
|
|
16
|
-
PORT: process.env.PORT,
|
|
17
|
-
JOYSTICK_SETTINGS: process.env.JOYSTICK_SETTINGS,
|
|
18
|
-
HMR_SESSIONS: sessionsBeforeHMRUpdate
|
|
19
|
-
}
|
|
7
|
+
sessionsBeforeHMRUpdate
|
|
20
8
|
});
|
|
21
9
|
return child_process.fork(
|
|
22
10
|
path.resolve(".joystick/build/index.server.js"),
|
package/package.json
CHANGED
package/src/lib/dev/startApp.js
CHANGED
|
@@ -6,19 +6,7 @@ const handleStartServerProcess = (execArgv = {}, sessionsBeforeHMRUpdate = {}) =
|
|
|
6
6
|
process.loader.text('Starting app...');
|
|
7
7
|
|
|
8
8
|
console.log({
|
|
9
|
-
|
|
10
|
-
// NOTE: Pipe stdin, stdout, and stderr. IPC establishes a message channel so we
|
|
11
|
-
// communicate with the child_process.
|
|
12
|
-
silent: true,
|
|
13
|
-
env: {
|
|
14
|
-
FORCE_COLOR: "1",
|
|
15
|
-
LOGS_PATH: process.env.LOGS_PATH,
|
|
16
|
-
NODE_ENV: process.env.NODE_ENV,
|
|
17
|
-
ROOT_URL: process.env.ROOT_URL,
|
|
18
|
-
PORT: process.env.PORT,
|
|
19
|
-
JOYSTICK_SETTINGS: process.env.JOYSTICK_SETTINGS,
|
|
20
|
-
HMR_SESSIONS: sessionsBeforeHMRUpdate,
|
|
21
|
-
},
|
|
9
|
+
sessionsBeforeHMRUpdate
|
|
22
10
|
});
|
|
23
11
|
|
|
24
12
|
return child_process.fork(
|