Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions scripts/test-package.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ try {
const packOutput = run("npm", [
"pack",
"--json",
// The outer `npm publish --dry-run` propagates npm_config_dry_run into
// this script; force a real tarball for the local smoke test.
"--dry-run=false",
"--pack-destination",
temporaryDirectory,
]);
Expand All @@ -70,6 +73,8 @@ try {
"--omit=dev",
"--no-audit",
"--no-fund",
// Same npm_config_dry_run propagation; force a real installation.
"--dry-run=false",
tarball,
]);

Expand Down