create-wdio 8.3.1 → 8.3.2
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/build/index.js +1 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -56,6 +56,7 @@ export async function createWebdriverIO(opts) {
|
|
|
56
56
|
* doesn't mark it as a Yarn project
|
|
57
57
|
* @see https://github.com/egoist/detect-package-manager/issues/11
|
|
58
58
|
*/
|
|
59
|
+
console.log(process.argv);
|
|
59
60
|
const cmd = PMs.includes(process.argv0) ? process.argv0 : 'npm';
|
|
60
61
|
await runProgram(cmd, ['install'], { cwd: root, stdio: 'ignore' });
|
|
61
62
|
}
|
package/package.json
CHANGED