wative 1.2.3 → 1.2.4

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.
@@ -113,7 +113,7 @@ const startService = () => {
113
113
  logToFile(`Starting SSH service '${serviceName}' (attempt ${restartCount + 1})`);
114
114
 
115
115
  // Spawn the SSH service process
116
- childProcess = spawn('npx', ['ts-node', path.join(wativeRoot, 'src', 'wative.ts'), 'ssh', 'start', '-c', serviceName], {
116
+ childProcess = spawn('node', [path.join(wativeRoot, 'bin', 'wative.js'), 'ssh', 'start', '-c', serviceName], {
117
117
  stdio: ['ignore', fs.openSync(logFile, 'a'), fs.openSync(logFile, 'a')],
118
118
  env: {
119
119
  ...process.env,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wative",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "An agile keystore management toolkit",
5
5
  "main": "lib/index.umd.js",
6
6
  "types": "src/index.d.ts",
@@ -113,7 +113,7 @@ const startService = () => {
113
113
  logToFile(`Starting SSH service '${serviceName}' (attempt ${restartCount + 1})`);
114
114
 
115
115
  // Spawn the SSH service process
116
- childProcess = spawn('npx', ['ts-node', path.join(wativeRoot, 'src', 'wative.ts'), 'ssh', 'start', '-c', serviceName], {
116
+ childProcess = spawn('node', [path.join(wativeRoot, 'bin', 'wative.js'), 'ssh', 'start', '-c', serviceName], {
117
117
  stdio: ['ignore', fs.openSync(logFile, 'a'), fs.openSync(logFile, 'a')],
118
118
  env: {
119
119
  ...process.env,