Skip to content

Commit

Permalink
fix original example
Browse files Browse the repository at this point in the history
  • Loading branch information
BioPhoton committed Sep 10, 2024
1 parent 2475fda commit 50973bc
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions e2e-examples/cli-e2e-original/setup/global-setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
unconfigureRegistry,
} from '@org/tools-utils';

const isVerbose = true; // process.env.NX_VERBOSE_LOGGING === 'true' ?? false;
const isVerbose = process.env['NX_VERBOSE_LOGGING'] === 'true' ?? false;
const projectName = process.env['NX_TASK_TARGET_PROJECT'];

export async function setup() {
Expand All @@ -31,9 +31,9 @@ export async function setup() {
targets: 'original-npm-publish',
exclude: 'tag:type:testing',
skipNxCache: true,
verbose: isVerbose
}),

verbose: isVerbose,
verbose: isVerbose
});

// package install all projects
Expand All @@ -43,9 +43,11 @@ export async function setup() {
_: ['run-many'],
targets: 'original-npm-install',
exclude: 'tag:type:testing',
parallel: 1,
skipNxCache: true,
verbose: isVerbose
}),
verbose: isVerbose,
verbose: isVerbose
});

// @TODO figure out why named exports don't work https://vitest.dev/config/#globalsetup
Expand Down

0 comments on commit 50973bc

Please sign in to comment.