From c7114a67d4b5c26e1ae1aa4ef7078460eef17649 Mon Sep 17 00:00:00 2001 From: Jason Cheatham Date: Thu, 6 Jul 2017 11:15:19 -0400 Subject: [PATCH] Specify public access when publishing This ensures publishing to a package scope, like @theintern, works with a free account. --- src/intern-dev-release.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intern-dev-release.ts b/src/intern-dev-release.ts index 36bdd93..44a6817 100644 --- a/src/intern-dev-release.ts +++ b/src/intern-dev-release.ts @@ -298,7 +298,7 @@ if (!npmTag) { // Publish the package from // or // process.chdir(publishDir); - exec(`npm publish --tag ${npmTag}`); + exec(`npm publish --tag ${npmTag} --access public`); // Update the original repo with the new branch and tag pointers pushBranches.map(function (branch) {