a11y-devkit-deploy 0.6.0 → 0.6.1
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 +2 -2
- package/src/installers/skills.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a11y-devkit-deploy",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "CLI to deploy a11y skills and MCP servers across IDEs",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -46,4 +46,4 @@
|
|
|
46
46
|
"picocolors": "^1.1.0",
|
|
47
47
|
"prompts": "^2.4.2"
|
|
48
48
|
}
|
|
49
|
-
}
|
|
49
|
+
}
|
package/src/installers/skills.js
CHANGED
|
@@ -13,7 +13,7 @@ async function pathExists(target) {
|
|
|
13
13
|
|
|
14
14
|
function run(command, args, options = {}) {
|
|
15
15
|
return new Promise((resolve, reject) => {
|
|
16
|
-
const child = spawn(command, args, { stdio: "pipe", ...options });
|
|
16
|
+
const child = spawn(command, args, { stdio: "pipe", shell: true, ...options });
|
|
17
17
|
let stdout = "";
|
|
18
18
|
let stderr = "";
|
|
19
19
|
|