Commit c1bacd63 by Dominik Prokop

Make published package public by default

parent db58ab6c
...@@ -87,7 +87,7 @@ const publishPackage = async (name: string, version: string) => { ...@@ -87,7 +87,7 @@ const publishPackage = async (name: string, version: string) => {
const spinner = startSpinner(`Publishing ${name} @ ${version} to npm registry...`); const spinner = startSpinner(`Publishing ${name} @ ${version} to npm registry...`);
try { try {
await execa('npm', ['publish']); await execa('npm', ['publish', '--access', 'public']);
spinner.succeed(); spinner.succeed();
} catch (e) { } catch (e) {
console.log(e); console.log(e);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment