@stacksjs/dtsx 0.2.0 → 0.2.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/README.md +73 -31
- package/dist/cli.js +154 -85522
- package/dist/config.d.ts +2 -0
- package/dist/index.js +1 -65068
- package/dist/utils.d.ts +2 -0
- package/package.json +5 -7
package/dist/utils.d.ts
CHANGED
|
@@ -9,3 +9,5 @@ export declare function checkIsolatedDeclarations(options?: DtsGenerationConfig)
|
|
|
9
9
|
export declare function formatDeclarations(declarations: string): string
|
|
10
10
|
|
|
11
11
|
export declare function formatComment(comment: string): string
|
|
12
|
+
|
|
13
|
+
export declare function deepMerge<T extends object>(target: T, ...sources: Array<Partial<T>>): T
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/dtsx",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.2",
|
|
5
5
|
"description": "A modern, fast .d.ts generation tool, powered by Bun.",
|
|
6
6
|
"author": "Chris Breuer <chris@stacksjs.org>",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"homepage": "https://github.com/stacksjs/
|
|
8
|
+
"homepage": "https://github.com/stacksjs/dtsx#readme",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/stacksjs/
|
|
11
|
+
"url": "git+https://github.com/stacksjs/dtsx.git"
|
|
12
12
|
},
|
|
13
13
|
"bugs": {
|
|
14
|
-
"url": "https://github.com/stacksjs/
|
|
14
|
+
"url": "https://github.com/stacksjs/dtsx/issues"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"dts",
|
|
@@ -66,8 +66,6 @@
|
|
|
66
66
|
"@stacksjs/development": "^0.67.0",
|
|
67
67
|
"@stacksjs/eslint-config": "^3.8.1-beta.2",
|
|
68
68
|
"@types/bun": "^1.1.11",
|
|
69
|
-
"c12": "^2.0.1",
|
|
70
|
-
"neverthrow": "^8.0.0",
|
|
71
69
|
"tinyglobby": "^0.2.9",
|
|
72
70
|
"vitepress": "^1.4.1"
|
|
73
71
|
},
|
|
@@ -76,7 +74,7 @@
|
|
|
76
74
|
"commit-msg": "bunx --no -- commitlint --edit $1"
|
|
77
75
|
},
|
|
78
76
|
"lint-staged": {
|
|
79
|
-
"*.{js,jsx,ts,tsx
|
|
77
|
+
"*.{js,jsx,ts,tsx}": "bunx eslint . --fix"
|
|
80
78
|
},
|
|
81
79
|
"config": {
|
|
82
80
|
"commitizen": {
|