better-dx 0.2.8 → 0.2.11
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 +77 -0
- package/dist/index.js +6142 -1106
- package/package.json +52 -4
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.11",
|
|
5
5
|
"description": "All the development dependencies you need.",
|
|
6
6
|
"author": "Chris Breuer <chris@stacksjs.org>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -61,6 +61,8 @@
|
|
|
61
61
|
"changelog": "bunx logsmith --verbose",
|
|
62
62
|
"changelog:generate": "bunx logsmith --output CHANGELOG.md",
|
|
63
63
|
"release": "bun --bun run changelog:generate && bunx --bun bumpx prompt --recursive",
|
|
64
|
+
"release:patch": "bun --bun run changelog:generate && bunx --bun bumpx patch --recursive --yes",
|
|
65
|
+
"publish:patch": "bun --bun run changelog:generate && bunx --bun bumpx patch --recursive --yes",
|
|
64
66
|
"dev:docs": "bun --bun bunpress dev docs",
|
|
65
67
|
"build:docs": "bun --bun bunpress build docs",
|
|
66
68
|
"preview:docs": "bun --bun bunpress preview docs",
|
|
@@ -76,10 +78,56 @@
|
|
|
76
78
|
"buddy-bot": "^0.9.17",
|
|
77
79
|
"bun-git-hooks": "^0.3.1",
|
|
78
80
|
"bun-plugin-dtsx": "^0.9.14",
|
|
79
|
-
"bunfig": "^0.15.
|
|
80
|
-
"pickier": "^0.1.
|
|
81
|
+
"bunfig": "^0.15.11",
|
|
82
|
+
"pickier": "^0.1.27",
|
|
81
83
|
"ts-error-handling": "^0.1.1",
|
|
82
|
-
"typescript": "^6.0.
|
|
84
|
+
"typescript": "^6.0.3"
|
|
85
|
+
},
|
|
86
|
+
"peerDependenciesMeta": {
|
|
87
|
+
"@stacksjs/bumpx": {
|
|
88
|
+
"optional": true
|
|
89
|
+
},
|
|
90
|
+
"@stacksjs/bunpress": {
|
|
91
|
+
"optional": true
|
|
92
|
+
},
|
|
93
|
+
"@stacksjs/clarity": {
|
|
94
|
+
"optional": true
|
|
95
|
+
},
|
|
96
|
+
"@stacksjs/gitlint": {
|
|
97
|
+
"optional": true
|
|
98
|
+
},
|
|
99
|
+
"@stacksjs/logsmith": {
|
|
100
|
+
"optional": true
|
|
101
|
+
},
|
|
102
|
+
"@types/bun": {
|
|
103
|
+
"optional": true
|
|
104
|
+
},
|
|
105
|
+
"buddy-bot": {
|
|
106
|
+
"optional": true
|
|
107
|
+
},
|
|
108
|
+
"bun-git-hooks": {
|
|
109
|
+
"optional": true
|
|
110
|
+
},
|
|
111
|
+
"bun-plugin-dtsx": {
|
|
112
|
+
"optional": true
|
|
113
|
+
},
|
|
114
|
+
"bunfig": {
|
|
115
|
+
"optional": true
|
|
116
|
+
},
|
|
117
|
+
"pickier": {
|
|
118
|
+
"optional": true
|
|
119
|
+
},
|
|
120
|
+
"ts-error-handling": {
|
|
121
|
+
"optional": true
|
|
122
|
+
},
|
|
123
|
+
"typescript": {
|
|
124
|
+
"optional": true
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"devDependencies": {
|
|
128
|
+
"@stacksjs/clapp": "^0.2.3",
|
|
129
|
+
"bun-plugin-dtsx": "^0.9.14",
|
|
130
|
+
"bunfig": "^0.15.11"
|
|
83
131
|
},
|
|
84
132
|
"git-hooks": {
|
|
85
133
|
"pre-commit": {
|