Skip to content

Commit 2714393

Browse files
chore: default --access to public in next
1 parent f4411cd commit 2714393

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/next/base.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const base = createBase({
2525
options: {
2626
access: z
2727
.union([z.literal("public"), z.literal("restricted")])
28-
.optional()
28+
.default("public")
2929
.describe("which `npm publish --access` to release npm packages with"),
3030
author: z
3131
.string()

0 commit comments

Comments
 (0)