@joystick.js/node-canary 0.0.0-canary.44 → 0.0.0-canary.46
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/_package.json +0 -9
- package/dist/app/index.js +3 -1
- package/package.json +1 -1
package/_package.json
CHANGED
|
@@ -46,16 +46,7 @@
|
|
|
46
46
|
"ws": "^8.4.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@babel/core": "^7.16.0",
|
|
50
|
-
"@babel/preset-env": "^7.16.0",
|
|
51
|
-
"@jest/globals": "^27.3.1",
|
|
52
|
-
"@joystick.js/ui": "^1.0.0-beta.29",
|
|
53
|
-
"babel-jest": "^27.3.1",
|
|
54
49
|
"esbuild": "^0.13.9",
|
|
55
|
-
"jest": "^27.3.1",
|
|
56
|
-
"jest-cli": "^27.3.1",
|
|
57
|
-
"jest-express": "^1.12.0",
|
|
58
|
-
"jest-mock-req-res": "^1.0.2",
|
|
59
50
|
"kill-port-process": "^3.0.1",
|
|
60
51
|
"node-port-check": "^2.0.1",
|
|
61
52
|
"ps-node": "^0.1.6"
|
package/dist/app/index.js
CHANGED
|
@@ -143,7 +143,9 @@ class App {
|
|
|
143
143
|
process.BUILD_ERROR = JSON.parse(message);
|
|
144
144
|
}
|
|
145
145
|
});
|
|
146
|
-
|
|
146
|
+
if (process.env.NODE_ENV !== "test") {
|
|
147
|
+
console.log(`App running at: http://localhost:${express.port}`);
|
|
148
|
+
}
|
|
147
149
|
}
|
|
148
150
|
setMachineId() {
|
|
149
151
|
generateMachineId();
|