Skip to content

Commit

Permalink
Why are the types empty?
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Jan 11, 2025
1 parent 3df298a commit 90c790a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/test-package-manager.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,9 @@ async function main() {
assert(TAGS.has(tag), `Expected passed arg, the tag (${tag}), to be one of ${[...TAGS.values()].join(', ')}`);
}

banner('Turbo is disabled via TURBO_FORCE=true');
process.env.TURBO_FORCE = 'true';

/**
* Useful if we already built tars,
* when we're doing repeat-testing.
Expand All @@ -317,7 +320,7 @@ async function main() {
if (!reuseTars) {
await deletePriorBuildArtifacts();
await deleteTars();
await $`pnpm prepare`;
await $({ env: { TURBO_FORCE: 'true' } })`pnpm prepare`;
await buildAll(tag);
}

Expand Down

0 comments on commit 90c790a

Please sign in to comment.