Skip to content

Commit 9a6519d

Browse files
feat: separate out blockMain (#2050)
## PR Checklist - [x] Addresses an existing open issue: fixes #2048 - [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 Separates out the concept of a "main" file to into its own `blockMain`. `blockTSup` now takes in `runInCI` as a general list of steps after `pnpm build`. 🎁
1 parent 47acb5f commit 9a6519d

12 files changed

+119
-29
lines changed

docs/Blocks.md

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ This table summarizes each block and which base levels they're included in:
3131
| GitHub PR Template | `--exclude-github-pr-template` | ✔️ || 💯 |
3232
| Gitignore | `--exclude-gitignore` | ✔️ || 💯 |
3333
| Knip | `--exclude-knip` | | | 💯 |
34+
| Main | `--exclude-main` | ✔️ || 💯 |
3435
| Markdownlint | `--exclude-markdownlint` | | | 💯 |
3536
| MIT License | `--exclude-mit-license` | ✔️ || 💯 |
3637
| ncc | `--exclude-ncc` | | | |

src/blocks/blockMain.test.ts

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
import { testBlock } from "bingo-stratum-testers";
2+
import { describe, expect, it } from "vitest";
3+
4+
import { blockMain } from "./blockMain.js";
5+
import { optionsBase } from "./options.fakes.js";
6+
7+
describe("blockMain", () => {
8+
it("without addons", () => {
9+
const creation = testBlock(blockMain, { options: optionsBase });
10+
11+
expect(creation).toMatchInlineSnapshot(`
12+
{
13+
"addons": [
14+
{
15+
"addons": {
16+
"properties": {
17+
"main": "lib/index.js",
18+
},
19+
},
20+
"block": [Function],
21+
},
22+
{
23+
"addons": {
24+
"runInCI": [
25+
"node lib/index.js",
26+
],
27+
},
28+
"block": [Function],
29+
},
30+
],
31+
}
32+
`);
33+
});
34+
35+
it("with addons", () => {
36+
const creation = testBlock(blockMain, {
37+
addons: {
38+
filePath: "other.js",
39+
runArgs: ["--version"],
40+
},
41+
options: optionsBase,
42+
});
43+
44+
expect(creation).toMatchInlineSnapshot(`
45+
{
46+
"addons": [
47+
{
48+
"addons": {
49+
"properties": {
50+
"main": "other.js",
51+
},
52+
},
53+
"block": [Function],
54+
},
55+
{
56+
"addons": {
57+
"runInCI": [
58+
"node other.js --version",
59+
],
60+
},
61+
"block": [Function],
62+
},
63+
],
64+
}
65+
`);
66+
});
67+
});

src/blocks/blockMain.ts

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import { z } from "zod";
2+
3+
import { base } from "../base.js";
4+
import { blockPackageJson } from "./blockPackageJson.js";
5+
import { blockTSup } from "./blockTSup.js";
6+
7+
export const blockMain = base.createBlock({
8+
about: {
9+
name: "Main",
10+
},
11+
addons: {
12+
filePath: z.string().optional(),
13+
runArgs: z.array(z.string()).default([]),
14+
},
15+
produce({ addons }) {
16+
const { filePath = "lib/index.js", runArgs } = addons;
17+
18+
return {
19+
addons: [
20+
blockPackageJson({
21+
properties: {
22+
main: filePath,
23+
},
24+
}),
25+
blockTSup({
26+
runInCI: [
27+
`node ${filePath}${runArgs.map((arg) => ` ${arg}`).join("")}`,
28+
],
29+
}),
30+
],
31+
};
32+
},
33+
});

src/blocks/blockPackageJson.test.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe("blockPackageJson", () => {
1717
expect(creation).toMatchInlineSnapshot(`
1818
{
1919
"files": {
20-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"lib/index.js","files":["README.md","package.json"]}",
20+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","files":["README.md","package.json"]}",
2121
},
2222
"scripts": [
2323
{
@@ -50,7 +50,7 @@ describe("blockPackageJson", () => {
5050
},
5151
],
5252
"files": {
53-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"lib/index.js","files":["README.md","package.json"]}",
53+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","files":["README.md","package.json"]}",
5454
},
5555
"scripts": [
5656
{
@@ -81,7 +81,7 @@ describe("blockPackageJson", () => {
8181
expect(creation).toMatchInlineSnapshot(`
8282
{
8383
"files": {
84-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"lib/index.js","files":["README.md","package.json"],"dependencies":{"is-odd":"1.2.3"},"other":true}",
84+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","files":["README.md","package.json"],"dependencies":{"is-odd":"1.2.3"},"other":true}",
8585
},
8686
"scripts": [
8787
{
@@ -116,7 +116,7 @@ describe("blockPackageJson", () => {
116116
expect(creation).toMatchInlineSnapshot(`
117117
{
118118
"files": {
119-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"lib/index.js","files":["README.md","package.json"],"dependencies":{"is-odd":"1.2.3"},"devDependencies":{"is-even":"4.5.6"},"other":true}",
119+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","files":["README.md","package.json"],"dependencies":{"is-odd":"1.2.3"},"devDependencies":{"is-even":"4.5.6"},"other":true}",
120120
},
121121
"scripts": [
122122
{
@@ -142,7 +142,7 @@ describe("blockPackageJson", () => {
142142
expect(creation).toMatchInlineSnapshot(`
143143
{
144144
"files": {
145-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","keywords":["abc","def","ghi"],"repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"lib/index.js","files":["README.md","package.json"]}",
145+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","keywords":["abc","def","ghi"],"repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","files":["README.md","package.json"]}",
146146
},
147147
"scripts": [
148148
{
@@ -170,7 +170,7 @@ describe("blockPackageJson", () => {
170170
expect(creation).toMatchInlineSnapshot(`
171171
{
172172
"files": {
173-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"lib/index.js","files":["README.md","package.json"],"packageManager":"[email protected]","engines":{"node":">=22.0.0"}}",
173+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","files":["README.md","package.json"],"packageManager":"[email protected]","engines":{"node":">=22.0.0"}}",
174174
},
175175
"scripts": [
176176
{
@@ -195,7 +195,7 @@ describe("blockPackageJson", () => {
195195
expect(creation).toMatchInlineSnapshot(`
196196
{
197197
"files": {
198-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"lib/index.js","bin":"bin/index.js","files":["README.md","bin/index.js","package.json"]}",
198+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","bin":"bin/index.js","files":["README.md","bin/index.js","package.json"]}",
199199
},
200200
"scripts": [
201201
{
@@ -223,7 +223,7 @@ describe("blockPackageJson", () => {
223223
expect(creation).toMatchInlineSnapshot(`
224224
{
225225
"files": {
226-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"lib/index.js","bin":{"absolute":"bin/absolute.js","relative":"./bin/relative.js"},"files":["README.md","bin/absolute.js","bin/relative.js","package.json"]}",
226+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","bin":{"absolute":"bin/absolute.js","relative":"./bin/relative.js"},"files":["README.md","bin/absolute.js","bin/relative.js","package.json"]}",
227227
},
228228
"scripts": [
229229
{
@@ -246,7 +246,7 @@ describe("blockPackageJson", () => {
246246
expect(creation).toMatchInlineSnapshot(`
247247
{
248248
"files": {
249-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"lib/index.js","files":["README.md","package.json"]}",
249+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","files":["README.md","package.json"]}",
250250
},
251251
"scripts": [
252252
{

src/blocks/blockPackageJson.ts

-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ export const blockPackageJson = base.createBlock({
7272
keyword.split(/ /),
7373
),
7474
license: "MIT",
75-
main: "lib/index.js",
7675
name: options.repository,
7776
repository: {
7877
type: "git",

src/blocks/blockTSup.test.ts

-9
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,6 @@ describe("blockTSup", () => {
5454
{
5555
"run": "pnpm build",
5656
},
57-
{
58-
"run": "node lib/index.js",
59-
},
6057
],
6158
},
6259
],
@@ -141,9 +138,6 @@ describe("blockTSup", () => {
141138
{
142139
"run": "pnpm build",
143140
},
144-
{
145-
"run": "node lib/index.js",
146-
},
147141
],
148142
},
149143
],
@@ -260,9 +254,6 @@ describe("blockTSup", () => {
260254
{
261255
"run": "pnpm build",
262256
},
263-
{
264-
"run": "node lib/index.js",
265-
},
266257
],
267258
},
268259
],

src/blocks/blockTSup.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const blockTSup = base.createBlock({
1717
},
1818
addons: {
1919
entry: z.array(z.string()).default([]),
20-
runArgs: z.array(z.string()).default([]),
20+
runInCI: z.array(z.string()).default([]),
2121
},
2222
produce({ addons, options }) {
2323
const { entry } = addons;
@@ -52,9 +52,7 @@ pnpm build --watch
5252
name: "Build",
5353
steps: [
5454
{ run: "pnpm build" },
55-
{
56-
run: `node lib/index.js${addons.runArgs.map((arg) => ` ${arg}`).join("")}`,
57-
},
55+
...addons.runInCI.map((run) => ({ run })),
5856
],
5957
},
6058
],

src/blocks/blockTypeScript.test.ts

-3
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ describe("blockTypeScript", () => {
107107
"files": [
108108
"lib/",
109109
],
110-
"main": "lib/index.js",
111110
"scripts": {
112111
"tsc": "tsc",
113112
},
@@ -258,7 +257,6 @@ describe("blockTypeScript", () => {
258257
"files": [
259258
"lib/",
260259
],
261-
"main": "lib/index.js",
262260
"scripts": {
263261
"tsc": "tsc",
264262
},
@@ -418,7 +416,6 @@ describe("blockTypeScript", () => {
418416
"files": [
419417
"lib/",
420418
],
421-
"main": "lib/index.js",
422419
"scripts": {
423420
"tsc": "tsc",
424421
},

src/blocks/blockTypeScript.ts

-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ export * from "./types.js";
8181
properties: {
8282
devDependencies: getPackageDependencies("typescript"),
8383
files: ["lib/"],
84-
main: "lib/index.js",
8584
scripts: {
8685
tsc: "tsc",
8786
},

src/blocks/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import { blockGitHubIssueTemplates } from "./blockGitHubIssueTemplates.js";
2222
import { blockGitHubPRTemplate } from "./blockGitHubPRTemplate.js";
2323
import { blockGitignore } from "./blockGitignore.js";
2424
import { blockKnip } from "./blockKnip.js";
25+
import { blockMain } from "./blockMain.js";
2526
import { blockMarkdownlint } from "./blockMarkdownlint.js";
2627
import { blockMITLicense } from "./blockMITLicense.js";
2728
import { blockNcc } from "./blockNcc.js";
@@ -68,6 +69,7 @@ export const blocks = {
6869
blockGitHubPRTemplate,
6970
blockGitignore,
7071
blockKnip,
72+
blockMain,
7173
blockMarkdownlint,
7274
blockMITLicense,
7375
blockNcc,
@@ -115,6 +117,7 @@ export { blockGitHubIssueTemplates } from "./blockGitHubIssueTemplates.js";
115117
export { blockGitHubPRTemplate } from "./blockGitHubPRTemplate.js";
116118
export { blockGitignore } from "./blockGitignore.js";
117119
export { blockKnip } from "./blockKnip.js";
120+
export { blockMain } from "./blockMain.js";
118121
export { blockMarkdownlint } from "./blockMarkdownlint.js";
119122
export { blockMITLicense } from "./blockMITLicense.js";
120123
export { blockNcc } from "./blockNcc.js";

src/integration.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import {
1313
blockCSpell,
1414
blockESLint,
1515
blockKnip,
16+
blockMain,
1617
blockTemplatedWith,
17-
blockTSup,
1818
presets,
1919
} from "./index.js";
2020

@@ -103,7 +103,7 @@ If you're interested in learning more, see the 'getting started' docs on:
103103
"trash-cli",
104104
],
105105
}),
106-
blockTSup({
106+
blockMain({
107107
runArgs: ["--version"],
108108
}),
109109
],

src/presets/minimal.ts

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { blockGitHubApps } from "../blocks/blockGitHubApps.js";
99
import { blockGitHubIssueTemplates } from "../blocks/blockGitHubIssueTemplates.js";
1010
import { blockGitHubPRTemplate } from "../blocks/blockGitHubPRTemplate.js";
1111
import { blockGitignore } from "../blocks/blockGitignore.js";
12+
import { blockMain } from "../blocks/blockMain.js";
1213
import { blockMITLicense } from "../blocks/blockMITLicense.js";
1314
import { blockPackageJson } from "../blocks/blockPackageJson.js";
1415
import { blockPrettier } from "../blocks/blockPrettier.js";
@@ -42,6 +43,7 @@ export const presetMinimal = base.createPreset({
4243
blockGitHubIssueTemplates,
4344
blockGitHubPRTemplate,
4445
blockGitignore,
46+
blockMain,
4547
blockMITLicense,
4648
blockPackageJson,
4749
blockPrettier,

0 commit comments

Comments
 (0)