@vitus-labs/tools-rollup 1.15.5 → 2.0.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.
- package/CHANGELOG.md +24 -0
- package/package.json +9 -9
- package/tsconfig.json +1 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#110](https://github.com/vitus-labs/tools/pull/110) [`e837583`](https://github.com/vitus-labs/tools/commit/e8375834e2c55ebecc9bc5bf476c6e157dae23a8) Thanks [@vitbokisch](https://github.com/vitbokisch)! - Bulk dependency updates and TypeScript 6 migration.
|
|
8
|
+
|
|
9
|
+
**Breaking (typescript)**: TypeScript peer dep bumped from `^5.9.3` to `^6.0.3`. Consumers must upgrade to TypeScript 6.
|
|
10
|
+
|
|
11
|
+
**Notable internal updates**:
|
|
12
|
+
|
|
13
|
+
- `@modelcontextprotocol/sdk` 1.27 → 1.29, `zod` 3 → 4 (mcp)
|
|
14
|
+
- `vite` 7 → 8, `storybook` 10.2 → 10.3 (storybook)
|
|
15
|
+
- `rolldown` rc.9 → rc.17, `rolldown-plugin-dts` 0.22 → 0.23 (rolldown)
|
|
16
|
+
- `rollup` 4.59 → 4.60 (rollup)
|
|
17
|
+
- `next` 16.1 → 16.2 (nextjs, nextjs-images)
|
|
18
|
+
- `vitest` 4.1.0 → 4.1.5 (vitest)
|
|
19
|
+
|
|
20
|
+
**Storybook peer deps restored**: Earlier auto-update inadvertently narrowed `react`, `react-dom`, `react-native`, and `react-native-web` peer ranges. Restored to original wide ranges.
|
|
21
|
+
|
|
22
|
+
Other packages received patch-level dev dep bumps and a TypeScript 6 baseUrl cleanup in tsconfigs (no consumer-facing change).
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [[`e837583`](https://github.com/vitus-labs/tools/commit/e8375834e2c55ebecc9bc5bf476c6e157dae23a8)]:
|
|
25
|
+
- @vitus-labs/tools-core@2.0.0
|
|
26
|
+
|
|
3
27
|
## 1.15.5
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitus-labs/tools-rollup",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,23 +37,23 @@
|
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@microsoft/api-extractor": "^7.
|
|
40
|
+
"@microsoft/api-extractor": "^7.58.7",
|
|
41
41
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
42
42
|
"@rollup/plugin-replace": "^6.0.3",
|
|
43
43
|
"@rollup/plugin-terser": "^1.0.0",
|
|
44
44
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
45
|
-
"@types/node": "^25.
|
|
46
|
-
"@vitus-labs/tools-core": "^
|
|
45
|
+
"@types/node": "^25.6.0",
|
|
46
|
+
"@vitus-labs/tools-core": "^2.0.0",
|
|
47
47
|
"chalk": "^5.6.2",
|
|
48
48
|
"find-up": "^8.0.0",
|
|
49
|
-
"lodash-es": "^4.
|
|
49
|
+
"lodash-es": "^4.18.1",
|
|
50
50
|
"rimraf": "^6.1.3",
|
|
51
|
-
"rollup": "^4.
|
|
51
|
+
"rollup": "^4.60.2",
|
|
52
52
|
"rollup-plugin-api-extractor": "^0.2.5",
|
|
53
53
|
"rollup-plugin-filesize": "^10.0.0",
|
|
54
54
|
"rollup-plugin-tsconfig-paths": "^1.5.2",
|
|
55
55
|
"rollup-plugin-typescript-paths": "^1.5.0",
|
|
56
|
-
"rollup-plugin-typescript2": "^0.
|
|
56
|
+
"rollup-plugin-typescript2": "^0.37.0",
|
|
57
57
|
"rollup-plugin-visualizer": "^7.0.1",
|
|
58
58
|
"ts-patch": "^3.3.0",
|
|
59
59
|
"tslib": "^2.8.1",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@types/lodash-es": "^4.17.12",
|
|
64
|
-
"@vitus-labs/tools-typescript": "^
|
|
65
|
-
"typescript": "^
|
|
64
|
+
"@vitus-labs/tools-typescript": "^2.0.0",
|
|
65
|
+
"typescript": "^6.0.3"
|
|
66
66
|
}
|
|
67
67
|
}
|
package/tsconfig.json
CHANGED
|
@@ -4,11 +4,7 @@
|
|
|
4
4
|
"noEmit": false,
|
|
5
5
|
"outDir": "lib",
|
|
6
6
|
"rootDir": "src",
|
|
7
|
-
"
|
|
8
|
-
"declarationDir": "./lib/types",
|
|
9
|
-
"paths": {
|
|
10
|
-
"~/*": ["src/*"]
|
|
11
|
-
}
|
|
7
|
+
"declarationDir": "./lib/types"
|
|
12
8
|
},
|
|
13
9
|
"include": ["typings", "src"],
|
|
14
10
|
"exclude": ["node_modules", "__stories__", "lib", "**/*.test.ts"]
|