bun-plugin-dtsx 0.21.0 → 0.21.2
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/dist/index.js +2137 -1146
- package/package.json +4 -14
- package/dist/index.d.ts +0 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bun-plugin-dtsx",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.21.
|
|
4
|
+
"version": "0.21.2",
|
|
5
5
|
"description": "A Bun Bundler plugin that auto generates your d.ts types extremely fast.",
|
|
6
6
|
"author": "Chris Breuer <chris@ow3.org>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"lint": "bunx eslint .",
|
|
44
44
|
"lint:fix": "bunx eslint . --fix",
|
|
45
45
|
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
|
|
46
|
-
"commit": "git cz",
|
|
47
46
|
"changelog": "bunx changelogen --output CHANGELOG.md",
|
|
48
47
|
"prepublishOnly": "bun run build",
|
|
49
48
|
"release": "bun run changelog && bunx bumpp package.json --all",
|
|
@@ -51,30 +50,21 @@
|
|
|
51
50
|
"typecheck": "bun tsc --noEmit"
|
|
52
51
|
},
|
|
53
52
|
"dependencies": {
|
|
54
|
-
"@stacksjs/dtsx": "^0.
|
|
53
|
+
"@stacksjs/dtsx": "^0.5.0"
|
|
55
54
|
},
|
|
56
55
|
"devDependencies": {
|
|
57
|
-
"@commitlint/cli": "^19.5.0",
|
|
58
56
|
"@stacksjs/eslint-config": "^3.8.1-beta.2",
|
|
59
57
|
"@types/bun": "^1.1.10",
|
|
60
58
|
"bumpp": "^9.6.1",
|
|
61
59
|
"changelogen": "^0.5.7",
|
|
62
|
-
"commitizen": "^4.3.1",
|
|
63
|
-
"cz-git": "^1.10.1",
|
|
64
60
|
"lint-staged": "^15.2.10",
|
|
65
61
|
"simple-git-hooks": "^2.11.1",
|
|
66
62
|
"typescript": "^5.6.2"
|
|
67
63
|
},
|
|
68
64
|
"simple-git-hooks": {
|
|
69
|
-
"pre-commit": "bun lint-staged"
|
|
70
|
-
"commit-msg": "bunx --no -- commitlint --edit $1"
|
|
65
|
+
"pre-commit": "bun lint-staged"
|
|
71
66
|
},
|
|
72
67
|
"lint-staged": {
|
|
73
|
-
"*.{js,
|
|
74
|
-
},
|
|
75
|
-
"config": {
|
|
76
|
-
"commitizen": {
|
|
77
|
-
"path": "node_modules/cz-git"
|
|
78
|
-
}
|
|
68
|
+
"*.{js,ts}": "bunx eslint . --fix"
|
|
79
69
|
}
|
|
80
70
|
}
|