@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.
- package/bin/install.js +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',
|
|
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',
|
|
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');
|