@kamleshsk/claude-qa 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/bin/install.js +2 -2
  2. package/package.json +1 -1
package/bin/install.js CHANGED
@@ -82,7 +82,7 @@ function setupNodeDeps() {
82
82
 
83
83
  console.log('\nšŸ“¦ Running npm install...\n');
84
84
  const install = spawnSync('npm', ['install'], {
85
- cwd: DEST, stdio: 'inherit', shell: true,
85
+ cwd: DEST, stdio: 'inherit',
86
86
  });
87
87
  if (install.status !== 0) {
88
88
  console.log(' āš ļø npm install failed — run manually: npm install');
@@ -91,7 +91,7 @@ function setupNodeDeps() {
91
91
 
92
92
  console.log('\nšŸŽ­ Installing Playwright Chromium...\n');
93
93
  const pw = spawnSync('npx', ['playwright', 'install', 'chromium'], {
94
- cwd: DEST, stdio: 'inherit', shell: true,
94
+ cwd: DEST, stdio: 'inherit',
95
95
  });
96
96
  if (pw.status !== 0) {
97
97
  console.log(' āš ļø Playwright install failed — run manually: npx playwright install chromium');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kamleshsk/claude-qa",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Claude Code QA skills and commands installer — works with any project",
5
5
  "bin": {
6
6
  "claude-qa": "bin/install.js"