Skip to content

Commit 3592308

Browse files
feat: infer access option from package.json (#1989)
## PR Checklist - [x] Addresses an existing open issue: fixes #1988 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview 🎁
1 parent 0bc93b5 commit 3592308

File tree

4 files changed

+60
-1
lines changed

4 files changed

+60
-1
lines changed

src/base.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { inputFromScript } from "input-from-script";
44
import lazyValue from "lazy-value";
55
import { z } from "zod";
66

7+
import { readAccess } from "./options/readAccess.js";
78
import { readAllContributors } from "./options/readAllContributors.js";
89
import { readAuthor } from "./options/readAuthor.js";
910
import { readDescription } from "./options/readDescription.js";
@@ -167,6 +168,10 @@ export const base = createBase({
167168
.describe("package version to publish as and store in `package.json`"),
168169
},
169170
prepare({ options, take }) {
171+
const getAccess = lazyValue(
172+
async () => await readAccess(getPackageDataFull),
173+
);
174+
170175
const getAllContributors = lazyValue(
171176
async () => await readAllContributors(take),
172177
);
@@ -285,7 +290,7 @@ export const base = createBase({
285290
);
286291

287292
return {
288-
access: "public" as const,
293+
access: getAccess,
289294
author: getAuthor,
290295
bin: getBin,
291296
contributors: getAllContributors,

src/options/readAccess.test.ts

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
import { describe, expect, it, vi } from "vitest";
2+
3+
import { readAccess } from "./readAccess.js";
4+
5+
describe(readAccess, () => {
6+
it("resolves with 'public' when package data does not exist", async () => {
7+
const getDescription = vi.fn().mockResolvedValue(undefined);
8+
9+
const actual = await readAccess(getDescription);
10+
11+
expect(actual).toBe("public");
12+
});
13+
14+
it("resolves with 'public' when package data does not have publishConfig", async () => {
15+
const getDescription = vi.fn().mockResolvedValue({});
16+
17+
const actual = await readAccess(getDescription);
18+
19+
expect(actual).toBe("public");
20+
});
21+
22+
it("resolves with 'public' when package data has an empty publishConfig", async () => {
23+
const getDescription = vi.fn().mockResolvedValue({
24+
publishConfig: {},
25+
});
26+
27+
const actual = await readAccess(getDescription);
28+
29+
expect(actual).toBe("public");
30+
});
31+
32+
it("resolves with the access when package data has a publishConfig with access", async () => {
33+
const access = "restricted";
34+
const getDescription = vi.fn().mockResolvedValue({
35+
publishConfig: { access },
36+
});
37+
38+
const actual = await readAccess(getDescription);
39+
40+
expect(actual).toBe(access);
41+
});
42+
});

src/options/readAccess.ts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { PartialPackageData } from "../types.js";
2+
3+
export async function readAccess(
4+
getPackageDataFull: () => Promise<PartialPackageData | undefined>,
5+
) {
6+
return (await getPackageDataFull())?.publishConfig?.access ?? "public";
7+
}

src/types.ts

+5
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,12 @@ export interface PartialPackageData {
2020
engines?: { node?: string };
2121
name?: string;
2222
packageManager?: string;
23+
publishConfig?: PartialPublishConfig;
2324
repository?: string | { type: string; url: string };
2425
scripts?: Record<string, string>;
2526
version?: string;
2627
}
28+
29+
interface PartialPublishConfig {
30+
access?: "public" | "restricted";
31+
}

0 commit comments

Comments
 (0)