Skip to content

Commit a07f6ed

Browse files
feat: add options.type (#2112)
## PR Checklist - [x] Addresses an existing open issue: fixes #2111 - [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 Goes a different, more comprehensive direction than #2110. Instead of encouraging a `blockPackageJson` it promotes `type` to a top-level option. `--type commonjs` will now work if a user really wants. `blockESLint` will now print its config as `eslint.config.mjs` if `options.type` is `"commonjs"`. It's still `eslint.config.js` otherwise. 🎁
1 parent 9648653 commit a07f6ed

9 files changed

+449
-18
lines changed

docs/CLI.md

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Each defaults to a value based on the running system, including an repository if
5656
| `--pnpm` | `string` | pnpm version for `package.json`'s `packageManager` field | Existing value in `package.json` if it exists |
5757
| `--repository` | `string` | Name for the new repository | The same as `--directory` |
5858
| `--title` | `string` | 'Title Case' title for the repository | Title-cased `repository` |
59+
| `--type` | `string` | package.json modules type | Existing value in `package.json` if it exists, or `"module"` |
5960
| `--version` | `string` | package version to publish as and store in `package.json` | Existing value in `package.json` if it exists, or `"0.0.0"` |
6061
| `--words` | `string[]` | additional words to add to the CSpell dictionary | Existing `words` in a `cspell.json` file if it exists, and any new words in from other options |
6162

eslint.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default tseslint.config(
4242
tseslint.configs.strictTypeChecked,
4343
tseslint.configs.stylisticTypeChecked,
4444
],
45-
files: ["**/*.js", "**/*.ts"],
45+
files: ["**/*.{js,ts}"],
4646
languageOptions: {
4747
parserOptions: {
4848
projectService: {

src/base.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ describe("base", () => {
5757
pnpm: expect.any(String),
5858
repository: "create-typescript-app",
5959
title: "Create TypeScript App",
60+
type: expect.any(String),
6061
version: expect.any(String),
6162
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-require-imports
6263
words: require("../cspell.json").words,

src/base.ts

+7
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,10 @@ export const base = createBase({
155155
.optional()
156156
.describe("GitHub branch ruleset ID for main branch protections"),
157157
title: z.string().describe("'Title Case' title for the repository"),
158+
type: z
159+
.union([z.literal("commonjs"), z.literal("module")])
160+
.optional()
161+
.describe("package.json modules type"),
158162
version: z
159163
.string()
160164
.optional()
@@ -294,6 +298,8 @@ export const base = createBase({
294298
async () => await readTitle(getReadme, getRepository),
295299
);
296300

301+
const getType = lazyValue(async () => (await getPackageData()).type);
302+
297303
const getVersion = lazyValue(async () => (await getPackageData()).version);
298304

299305
const getWords = lazyValue(async () => await readWords(take));
@@ -324,6 +330,7 @@ export const base = createBase({
324330
repository: getRepository,
325331
rulesetId: getRulesetId,
326332
title: getTitle,
333+
type: getType,
327334
version: getVersion,
328335
words: getWords,
329336
workflowsVersions: getWorkflowData,

0 commit comments

Comments
 (0)