@unito/integration-cli 0.57.0 → 0.57.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/dist/src/commands/test.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
|
@@ -80,7 +80,7 @@ class Test extends baseCommand_1.BaseCommand {
|
|
|
80
80
|
(0, integrations_1.validateIsIntegrationDirectory)();
|
|
81
81
|
const { flags } = await this.parse(Test);
|
|
82
82
|
// Install NPM dependencies.
|
|
83
|
-
core_1.ux.action.start('Installing NPM dependencies');
|
|
83
|
+
core_1.ux.action.start('Installing NPM dependencies', undefined, { stdout: true });
|
|
84
84
|
child_process_1.default.execSync('npm install', {
|
|
85
85
|
env: { ...process.env, NODE_ENV: 'development' },
|
|
86
86
|
stdio: ['ignore', 'ignore', 'inherit'],
|
package/oclif.manifest.json
CHANGED