dacty-launch 1.6.1 → 1.6.3
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/index.js +1 -1
- package/package.json +5 -2
package/index.js
CHANGED
|
@@ -4,7 +4,7 @@ const { execSync } = require('child_process');
|
|
|
4
4
|
try {
|
|
5
5
|
// Forward the command to the main dactyclaw package transparently
|
|
6
6
|
const args = process.argv.slice(2).join(' ');
|
|
7
|
-
execSync(`npx --yes --package dactyclaw dacty-launch ${args}`, { stdio: 'inherit' });
|
|
7
|
+
execSync(`npx --yes --package dactyclaw dacty-launch ${args}`, { stdio: 'inherit', cwd: process.cwd() });
|
|
8
8
|
} catch (error) {
|
|
9
9
|
process.exit(1);
|
|
10
10
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dacty-launch",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "Proxy for launching Dactyclaw agent tokens (Alias)",
|
|
5
5
|
"bin": {
|
|
6
|
-
"dacty-launch": "
|
|
6
|
+
"dacty-launch": "node_modules/dactyclaw/bin/dacty-launch.js"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"dactyclaw": "latest"
|
|
7
10
|
},
|
|
8
11
|
"scripts": {
|
|
9
12
|
"test": "echo \"Error: no test specified\" && exit 1"
|