unplugin-dts-bundle-generator 3.3.0 → 3.4.0

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.
Files changed (2) hide show
  1. package/dist/rolldown.d.ts +1 -1
  2. package/package.json +11 -10
@@ -8,7 +8,7 @@ export interface DtsBundleGeneratorOptions {
8
8
  export interface OptionsForRolldown extends DtsBundleGeneratorOptions {
9
9
  file?: string;
10
10
  }
11
- declare const _default: (options: OptionsForRolldown) => any;
11
+ declare const _default: (options: OptionsForRolldown) => import("unplugin").RolldownPlugin<any> | import("unplugin").RolldownPlugin<any>[];
12
12
 
13
13
  export {
14
14
  _default as default,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unplugin-dts-bundle-generator",
3
- "version": "3.3.0",
3
+ "version": "3.4.0",
4
4
  "description": "DTS bundle generator for Unplugin",
5
5
  "keywords": [
6
6
  "unplugin",
@@ -56,6 +56,7 @@
56
56
  "lint": "eslint . --fix && sort-package-json",
57
57
  "lint:ci": "eslint . && sort-package-json --check",
58
58
  "prepack": "npm run clean && npm run build",
59
+ "test:all": "npm run build & rimraf dist-esbuild dist-rolldown dist-rollup & node ./test/esbuild.config.ts & rolldown --config ./test/rollup.config.ts & rollup --config ./test/rollup.config.ts",
59
60
  "test:esbuild": "npm run build & rimraf dist-esbuild & node ./test/esbuild.config.ts",
60
61
  "test:rolldown": "npm run build & rimraf dist-rollup & rolldown --config ./test/rollup.config.ts",
61
62
  "test:rollup": "npm run build & rimraf dist-rollup & rollup --config ./test/rollup.config.ts",
@@ -65,16 +66,16 @@
65
66
  },
66
67
  "dependencies": {
67
68
  "dts-bundle-generator": "^9.3.1",
68
- "unplugin": "^2.3.5"
69
+ "unplugin": "^3.0.0"
69
70
  },
70
71
  "devDependencies": {
71
- "@antfu/eslint-config": "^4.16.1",
72
- "@nuxt/kit": "^3.17.4",
73
- "@nuxt/schema": "^3.17.4",
72
+ "@antfu/eslint-config": "^7.6.1",
73
+ "@nuxt/kit": "^4.3.1",
74
+ "@nuxt/schema": "^4.3.1",
74
75
  "@rollup/plugin-typescript": "^12.1.4",
75
- "@types/node": "^24.0.4",
76
- "esbuild": "^0.25.8",
77
- "eslint": "^9.12.0",
76
+ "@types/node": "^25.3.3",
77
+ "esbuild": "^0.27.3",
78
+ "eslint": "^10.0.2",
78
79
  "jiti": "^2.4.2",
79
80
  "rimraf": "^6.0.1",
80
81
  "rolldown": "^1.0.0-beta.32",
@@ -86,8 +87,8 @@
86
87
  "webpack": "^5.99.9"
87
88
  },
88
89
  "peerDependencies": {
89
- "@nuxt/kit": "^3",
90
- "@nuxt/schema": "^3",
90
+ "@nuxt/kit": "^3 || ^4",
91
+ "@nuxt/schema": "^3 || ^4",
91
92
  "esbuild": "*",
92
93
  "rollup": ">=3",
93
94
  "vite": ">=3",