better-dx 0.2.6 → 0.2.8
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.
- package/CHANGELOG.md +156 -0
- package/dist/config.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1001 -2411
- package/dist/types.d.ts +1 -1
- package/package.json +17 -21
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "better-dx",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.8",
|
|
5
5
|
"description": "All the development dependencies you need.",
|
|
6
6
|
"author": "Chris Breuer <chris@stacksjs.org>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -31,10 +31,6 @@
|
|
|
31
31
|
},
|
|
32
32
|
"module": "./dist/src/index.js",
|
|
33
33
|
"types": "./dist/index.d.ts",
|
|
34
|
-
"bin": {
|
|
35
|
-
"better-dx": "./dist/bin/cli.js",
|
|
36
|
-
"dx": "./dist/bin/cli.js"
|
|
37
|
-
},
|
|
38
34
|
"files": [
|
|
39
35
|
"README.md",
|
|
40
36
|
"dist"
|
|
@@ -58,32 +54,32 @@
|
|
|
58
54
|
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
|
|
59
55
|
"prepublishOnly": "bun --bun run build && bun run compile:all && bun run zip",
|
|
60
56
|
"test": "bun test",
|
|
61
|
-
"lint": "bunx --bun pickier
|
|
62
|
-
"lint:fix": "bunx --bun pickier
|
|
63
|
-
"format": "bunx --bun pickier
|
|
64
|
-
"format:fix": "bunx --bun pickier
|
|
57
|
+
"lint": "bunx --bun pickier .",
|
|
58
|
+
"lint:fix": "bunx --bun pickier . --fix",
|
|
59
|
+
"format": "bunx --bun pickier . --format",
|
|
60
|
+
"format:fix": "bunx --bun pickier . --format --write",
|
|
65
61
|
"changelog": "bunx logsmith --verbose",
|
|
66
62
|
"changelog:generate": "bunx logsmith --output CHANGELOG.md",
|
|
67
63
|
"release": "bun --bun run changelog:generate && bunx --bun bumpx prompt --recursive",
|
|
68
|
-
"dev:docs": "bun --bun
|
|
69
|
-
"build:docs": "bun --bun
|
|
70
|
-
"preview:docs": "bun --bun
|
|
64
|
+
"dev:docs": "bun --bun bunpress dev docs",
|
|
65
|
+
"build:docs": "bun --bun bunpress build docs",
|
|
66
|
+
"preview:docs": "bun --bun bunpress preview docs",
|
|
71
67
|
"typecheck": "bun --bun tsc --noEmit"
|
|
72
68
|
},
|
|
73
69
|
"peerDependencies": {
|
|
74
|
-
"@stacksjs/bumpx": "^0.2.
|
|
75
|
-
"@stacksjs/bunpress": "^0.1.
|
|
76
|
-
"@stacksjs/clarity": "^0.3.
|
|
70
|
+
"@stacksjs/bumpx": "^0.2.5",
|
|
71
|
+
"@stacksjs/bunpress": "^0.1.4",
|
|
72
|
+
"@stacksjs/clarity": "^0.3.28",
|
|
77
73
|
"@stacksjs/gitlint": "^0.1.5",
|
|
78
74
|
"@stacksjs/logsmith": "^0.2.1",
|
|
79
|
-
"@types/bun": "^1.3.
|
|
80
|
-
"buddy-bot": "^0.9.
|
|
75
|
+
"@types/bun": "^1.3.13",
|
|
76
|
+
"buddy-bot": "^0.9.17",
|
|
81
77
|
"bun-git-hooks": "^0.3.1",
|
|
82
|
-
"bun-plugin-dtsx": "^0.9.
|
|
83
|
-
"bunfig": "^0.15.
|
|
84
|
-
"pickier": "^0.1.
|
|
78
|
+
"bun-plugin-dtsx": "^0.9.14",
|
|
79
|
+
"bunfig": "^0.15.9",
|
|
80
|
+
"pickier": "^0.1.26",
|
|
85
81
|
"ts-error-handling": "^0.1.1",
|
|
86
|
-
"typescript": "^
|
|
82
|
+
"typescript": "^6.0.2"
|
|
87
83
|
},
|
|
88
84
|
"git-hooks": {
|
|
89
85
|
"pre-commit": {
|