systemview 1.4.2 → 1.5.2

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.
Files changed (2) hide show
  1. package/cli/index.js +1 -1
  2. package/package.json +1 -1
package/cli/index.js CHANGED
@@ -26,7 +26,7 @@ function startApp() {
26
26
  const env = Object.create(process.env);
27
27
  env.PORT = port;
28
28
  log(`Launching SystemView UI @http://localhost:${port}/`);
29
- const AppProcess = spawn("npm", ["start"], {
29
+ const AppProcess = spawn("node", ["server"], {
30
30
  stdio: ["inherit"],
31
31
  shell: true,
32
32
  env,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "systemview",
3
3
  "description": "A documentation and testing suite for SystemLynx",
4
- "version": "1.4.2",
4
+ "version": "1.5.2",
5
5
  "license": "UNLICENSED",
6
6
  "bin": {
7
7
  "systemview": "cli/index.js"