rollup-plugin-webpack-stats 2.1.8-beta.2 → 2.1.8

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/plugin.d.ts CHANGED
@@ -1,5 +1,5 @@
1
+ import type { Plugin, OutputOptions } from 'rollup';
1
2
  import { type StatsOptions } from 'rollup-plugin-stats/extract';
2
- import type { Plugin, OutputOptions } from './types';
3
3
  import { type BundleTransformOptions } from './transform';
4
4
  import { type StatsWrite } from './write';
5
5
  type WebpackStatsOptions = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollup-plugin-webpack-stats",
3
- "version": "2.1.8-beta.2",
3
+ "version": "2.1.8",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -68,27 +68,26 @@
68
68
  "trailingComma": "es5"
69
69
  },
70
70
  "devDependencies": {
71
- "@release-it/conventional-changelog": "10.0.1",
71
+ "@release-it/conventional-changelog": "10.0.2",
72
72
  "@rollup/plugin-typescript": "12.3.0",
73
- "@tsconfig/node18": "18.2.4",
74
- "@types/node": "24.9.2",
73
+ "@tsconfig/node18": "18.2.6",
74
+ "@types/node": "24.10.1",
75
75
  "husky": "9.1.7",
76
- "memfs": "4.50.0",
77
- "release-it": "19.0.5",
78
- "rimraf": "6.1.0",
79
- "rollup": "4.52.5",
76
+ "memfs": "4.51.0",
77
+ "release-it": "19.0.6",
78
+ "rimraf": "6.1.2",
79
+ "rollup": "4.53.3",
80
80
  "tslib": "2.8.1",
81
81
  "typescript": "5.9.3",
82
- "vite": "7.2.2",
83
- "vitest": "4.0.6"
82
+ "vitest": "4.0.13"
84
83
  },
85
84
  "dependencies": {
86
- "rollup-plugin-stats": "1.5.2"
85
+ "rollup-plugin-stats": "1.5.3"
87
86
  },
88
87
  "peerDependencies": {
89
- "rolldown": "^1.0.0-beta.0",
88
+ "vite": "^5.0.0 || ^6.0.0 || ^7.0.0",
90
89
  "rollup": "^3.0.0 || ^4.0.0",
91
- "vite": "^5.0.0 || ^6.0.0 || ^7.0.0"
90
+ "rolldown": "^1.0.0-beta.0"
92
91
  },
93
92
  "peerDependenciesMeta": {
94
93
  "rolldown": {
package/dist/types.d.ts DELETED
@@ -1,4 +0,0 @@
1
- import type { OutputOptions as RollupOutputOptions } from 'rollup';
2
- import type { Plugin as VitePlugin } from 'vite';
3
- export type Plugin = VitePlugin;
4
- export type OutputOptions = RollupOutputOptions;