Skip to content

Commit c7114a6

Browse files
committed
Specify public access when publishing
This ensures publishing to a package scope, like @theintern, works with a free account.
1 parent df87eb4 commit c7114a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/intern-dev-release.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ if (!npmTag) {
298298

299299
// Publish the package from <rootDir>/<tmpDir>/<publishDir> or <rootDir>/<tmpDir>/<buildDir>
300300
process.chdir(publishDir);
301-
exec(`npm publish --tag ${npmTag}`);
301+
exec(`npm publish --tag ${npmTag} --access public`);
302302

303303
// Update the original repo with the new branch and tag pointers
304304
pushBranches.map(function (branch) {

0 commit comments

Comments
 (0)