rolldown-plugin-dts 0.13.12 → 0.13.13
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 +1 -1
- package/package.json +11 -14
package/dist/index.js
CHANGED
|
@@ -504,7 +504,7 @@ function isReferenceId(node) {
|
|
|
504
504
|
return !!node && (node.type === "Identifier" || node.type === "MemberExpression");
|
|
505
505
|
}
|
|
506
506
|
function isHelperImport(node) {
|
|
507
|
-
return node.type === "ImportDeclaration" && node.specifiers.length === 1 && node.specifiers
|
|
507
|
+
return node.type === "ImportDeclaration" && node.specifiers.length === 1 && node.specifiers.every((spec) => spec.type === "ImportSpecifier" && spec.imported.type === "Identifier" && ["__export", "__reExport"].includes(spec.imported.name));
|
|
508
508
|
}
|
|
509
509
|
function patchImportSource(node) {
|
|
510
510
|
if (isTypeOf(node, [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rolldown-plugin-dts",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.13",
|
|
4
4
|
"description": "A Rolldown plugin to bundle dts files",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@babel/generator": "^7.27.5",
|
|
50
|
-
"@babel/parser": "^7.27.
|
|
51
|
-
"@babel/types": "^7.27.
|
|
50
|
+
"@babel/parser": "^7.27.7",
|
|
51
|
+
"@babel/types": "^7.27.7",
|
|
52
52
|
"ast-kit": "^2.1.0",
|
|
53
53
|
"birpc": "^2.4.0",
|
|
54
54
|
"debug": "^4.4.1",
|
|
@@ -57,23 +57,23 @@
|
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@sxzz/eslint-config": "^7.0.4",
|
|
60
|
-
"@sxzz/prettier-config": "^2.2.
|
|
60
|
+
"@sxzz/prettier-config": "^2.2.3",
|
|
61
61
|
"@sxzz/test-utils": "^0.5.6",
|
|
62
62
|
"@types/babel__generator": "^7.27.0",
|
|
63
63
|
"@types/debug": "^4.1.12",
|
|
64
|
-
"@types/node": "^24.0.
|
|
65
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
66
|
-
"@volar/typescript": "^2.4.
|
|
64
|
+
"@types/node": "^24.0.6",
|
|
65
|
+
"@typescript/native-preview": "7.0.0-dev.20250627.1",
|
|
66
|
+
"@volar/typescript": "^2.4.15",
|
|
67
67
|
"@vue/language-core": "^2.2.10",
|
|
68
68
|
"bumpp": "^10.2.0",
|
|
69
69
|
"diff": "^8.0.2",
|
|
70
|
-
"eslint": "^9.
|
|
70
|
+
"eslint": "^9.30.0",
|
|
71
71
|
"estree-walker": "^3.0.3",
|
|
72
|
-
"prettier": "^3.
|
|
73
|
-
"rolldown": "1.0.0-beta.
|
|
72
|
+
"prettier": "^3.6.2",
|
|
73
|
+
"rolldown": "^1.0.0-beta.21",
|
|
74
74
|
"rollup-plugin-dts": "^6.2.1",
|
|
75
75
|
"tinyglobby": "^0.2.14",
|
|
76
|
-
"tsdown": "^0.12.
|
|
76
|
+
"tsdown": "^0.12.9",
|
|
77
77
|
"tsx": "^4.20.3",
|
|
78
78
|
"typescript": "^5.8.3",
|
|
79
79
|
"vitest": "^3.2.4",
|
|
@@ -83,9 +83,6 @@
|
|
|
83
83
|
"engines": {
|
|
84
84
|
"node": ">=20.18.0"
|
|
85
85
|
},
|
|
86
|
-
"resolutions": {
|
|
87
|
-
"rolldown": "1.0.0-beta.19"
|
|
88
|
-
},
|
|
89
86
|
"prettier": "@sxzz/prettier-config",
|
|
90
87
|
"scripts": {
|
|
91
88
|
"lint": "eslint --cache .",
|