@joystick.js/cli-canary 0.0.0-canary.169 → 0.0.0-canary.170
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import child_process from "child_process";
|
|
2
2
|
import path from "path";
|
|
3
|
-
const handleStartServerProcess = (execArgv = {}, sessionsBeforeHMRUpdate = {}) => {
|
|
3
|
+
const handleStartServerProcess = (execArgv = {}, sessionsBeforeHMRUpdate = "{}") => {
|
|
4
4
|
try {
|
|
5
5
|
process.loader.text("Starting app...");
|
|
6
6
|
console.log({
|
package/package.json
CHANGED
package/src/lib/dev/startApp.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import child_process from "child_process";
|
|
2
2
|
import path from "path";
|
|
3
3
|
|
|
4
|
-
const handleStartServerProcess = (execArgv = {}, sessionsBeforeHMRUpdate = {}) => {
|
|
4
|
+
const handleStartServerProcess = (execArgv = {}, sessionsBeforeHMRUpdate = '{}') => {
|
|
5
5
|
try {
|
|
6
6
|
process.loader.text('Starting app...');
|
|
7
7
|
|