elegance-js 2.0.1 → 2.0.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.
package/dist/build.mjs CHANGED
@@ -1025,7 +1025,7 @@ var runBuild = (filepath, DIST_DIR) => {
1025
1025
  child.removeAllListeners();
1026
1026
  child.kill("SIGKILL");
1027
1027
  }
1028
- child = child_process.spawn("node", [filepath], {
1028
+ child = child_process.spawn("npx ts-arc", [filepath], {
1029
1029
  stdio: ["inherit", "inherit", "inherit", "ipc"],
1030
1030
  env: { ...process.env, DIST_DIR, OPTIONS: optionsString, PACKAGE_PATH: packageDir2 }
1031
1031
  });
@@ -1028,7 +1028,7 @@ var runBuild = (filepath, DIST_DIR) => {
1028
1028
  child.removeAllListeners();
1029
1029
  child.kill("SIGKILL");
1030
1030
  }
1031
- child = child_process.spawn("node", [filepath], {
1031
+ child = child_process.spawn("npx ts-arc", [filepath], {
1032
1032
  stdio: ["inherit", "inherit", "inherit", "ipc"],
1033
1033
  env: { ...process.env, DIST_DIR, OPTIONS: optionsString, PACKAGE_PATH: packageDir2 }
1034
1034
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elegance-js",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Web-Framework",
5
5
  "type": "module",
6
6
  "bin": {
File without changes