Skip to content

Commit 3e16ad9

Browse files
committedMar 5, 2025·
1 parent 433d84d commit 3e16ad9

File tree

4 files changed

+87
-85
lines changed

4 files changed

+87
-85
lines changed
 

‎package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,18 @@
3737
"*": "prettier --ignore-unknown --write"
3838
},
3939
"dependencies": {
40-
"bingo": "^0.5.2",
41-
"bingo-fs": "^0.5.2",
42-
"bingo-stratum": "^0.5.2",
40+
"bingo": "^0.5.3",
41+
"bingo-fs": "^0.5.3",
42+
"bingo-stratum": "^0.5.3",
4343
"cspell-populate-words": "^0.3.0",
4444
"execa": "^9.5.2",
4545
"git-remote-origin-url": "^4.0.0",
4646
"git-url-parse": "^16.0.1",
4747
"html-to-text": "^9.0.5",
4848
"image-size": "^1.2.0",
49-
"input-from-file": "^0.5.2",
50-
"input-from-file-json": "^0.5.2",
51-
"input-from-script": "^0.5.2",
49+
"input-from-file": "^0.5.3",
50+
"input-from-file-json": "^0.5.3",
51+
"input-from-script": "^0.5.3",
5252
"js-yaml": "^4.1.0",
5353
"lazy-value": "^3.0.0",
5454
"lodash": "^4.17.21",
@@ -78,8 +78,8 @@
7878
"@vitest/coverage-v8": "3.0.6",
7979
"@vitest/eslint-plugin": "1.1.31",
8080
"all-contributors-cli": "6.26.1",
81-
"bingo-stratum-testers": "0.5.2",
82-
"bingo-testers": "0.5.2",
81+
"bingo-stratum-testers": "0.5.3",
82+
"bingo-testers": "0.5.3",
8383
"console-fail-test": "0.5.0",
8484
"cspell": "8.17.3",
8585
"eslint": "9.20.1",

‎pnpm-lock.yaml

+75-75
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/blocks/blockTSup.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { CommandPhase } from "./phases.js";
1111

1212
export const blockTSup = base.createBlock({
1313
about: {
14-
name: "tsup",
14+
name: "TSup",
1515
},
1616
addons: {
1717
entry: z.array(z.string()).default([]),

‎src/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { template } from "./template.js";
22

3-
export { template as default, template };
3+
export { template };
4+
5+
export const { createConfig } = template;
46

57
export * from "./base.js";
68
export * from "./blocks/index.js";

0 commit comments

Comments
 (0)
Please sign in to comment.