@willbooster/wbfy 2.1.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +123 -100
  3. package/package.json +14 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@willbooster/wbfy",
3
- "version": "2.1.0",
3
+ "version": "3.0.0",
4
4
  "description": "A tool for applying WillBooster's conventional configures to npm packages",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,18 +17,16 @@
17
17
  ],
18
18
  "scripts": {
19
19
  "build": "build-ts app",
20
- "cleanup": "bun run format && bun run lint-fix",
21
- "format": "sort-package-json && bun run format-code",
22
- "format-code": "oxfmt --write --no-error-on-unmatched-pattern . '!**/package.json'",
23
- "lint": "oxlint --type-aware --type-check --no-error-on-unmatched-pattern .",
24
- "lint-fix": "bun run lint --fix",
20
+ "cleanup": "bun wb lint --fix --format",
21
+ "format": "bun wb lint --format",
22
+ "lint": "bun wb lint",
23
+ "lint-fix": "bun wb lint --fix",
25
24
  "start": "build-ts run src/index.ts --env .env --",
26
25
  "start-prod": "bun run build && bun wbfy",
27
- "test": "bun run test/ci-setup && vitest test",
28
- "test/ci-setup": "rm -Rf test-fixtures/wbfy && mkdir -p test-fixtures && git clone https://github.com/WillBooster/test-fixtures-for-wbfy.git test-fixtures/wbfy",
29
- "typecheck": "wb typecheck",
30
- "verify": "wb verify",
31
- "verify-full": "wb verify --full"
26
+ "test": "bun wb test",
27
+ "typecheck": "bun wb typecheck",
28
+ "verify": "bun wb verify",
29
+ "verify-full": "bun wb verify --full"
32
30
  },
33
31
  "dependencies": {
34
32
  "@octokit/core": "7.0.6",
@@ -49,8 +47,10 @@
49
47
  "zod": "4.4.3"
50
48
  },
51
49
  "devDependencies": {
50
+ "@tsconfig/bun": "1.0.10",
52
51
  "@tsconfig/node-lts": "24.0.0",
53
52
  "@tsconfig/node-ts": "23.6.4",
53
+ "@types/bun": "1.3.14",
54
54
  "@types/jest": "30.0.0",
55
55
  "@types/js-yaml": "4.0.9",
56
56
  "@types/node": "25.6.0",
@@ -58,12 +58,12 @@
58
58
  "@types/yargs": "17.0.35",
59
59
  "@willbooster/oxfmt-config": "1.2.2",
60
60
  "@willbooster/oxlint-config": "1.4.8",
61
- "@willbooster/wb": "14.0.0",
62
- "build-ts": "17.1.34",
61
+ "@willbooster/wb": "14.1.0",
62
+ "build-ts": "17.1.37",
63
63
  "lefthook": "2.1.10",
64
64
  "oxfmt": "0.59.0",
65
65
  "oxlint": "1.74.0",
66
- "oxlint-tsgolint": "0.24.0",
66
+ "oxlint-tsgolint": "0.25.0",
67
67
  "sort-package-json": "4.0.0",
68
68
  "type-fest": "5.6.0",
69
69
  "vitest": "4.1.5"