@vitus-labs/tools-rollup 1.12.1-alpha.0 → 1.14.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 -4
- package/lib/bin/run-build.js +0 -0
- package/lib/bin/run-watch.js +0 -0
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,35 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
3
|
+
## 1.14.0
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
### Patch Changes
|
|
7
6
|
|
|
8
|
-
**
|
|
7
|
+
- [`3605125`](https://github.com/vitus-labs/tools/commit/36051255315da3d87a2a6b8d6b7ecd8cb9f718f9) Thanks [@vitbokisch](https://github.com/vitbokisch)! - **rolldown**: Auto-derive build entries from package.json subpath exports (e.g., `"./devtools"`, `"./validation/zod"`). Generates separate `.d.ts` declarations per subpath.
|
|
8
|
+
|
|
9
|
+
**vitest**: Export `DEFAULT_COVERAGE_EXCLUDE` and `DEFAULT_COVERAGE_INCLUDE` for `mergeConfig` compatibility. Add `coverageInclude` option.
|
|
10
|
+
|
|
11
|
+
**all**: Switch to `workspace:^` protocol, custom publish script with OIDC provenance.
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [[`3605125`](https://github.com/vitus-labs/tools/commit/36051255315da3d87a2a6b8d6b7ecd8cb9f718f9)]:
|
|
14
|
+
- @vitus-labs/tools-core@1.14.0
|
|
15
|
+
|
|
16
|
+
## 1.13.0
|
|
9
17
|
|
|
18
|
+
### Minor Changes
|
|
10
19
|
|
|
20
|
+
- [`d76a254`](https://github.com/vitus-labs/tools/commit/d76a2541c1149d88c2d6af50181e502b78c6d1ec) Thanks [@vitbokisch](https://github.com/vitbokisch)! - Add advanced rolldown build options (entries, bundleAll, copyFiles, banner/footer, alias, plugins) for non-library targets like Chrome extensions, CLI tools, and Lambda functions. Replace Lerna with Changesets for versioning and changelog generation.
|
|
11
21
|
|
|
22
|
+
### Patch Changes
|
|
12
23
|
|
|
24
|
+
- Updated dependencies [[`d76a254`](https://github.com/vitus-labs/tools/commit/d76a2541c1149d88c2d6af50181e502b78c6d1ec)]:
|
|
25
|
+
- @vitus-labs/tools-core@1.13.0
|
|
26
|
+
|
|
27
|
+
All notable changes to this project will be documented in this file.
|
|
28
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
29
|
+
|
|
30
|
+
## [1.5.2-alpha.1](https://github.com/vitus-labs/tools/compare/v1.5.2-alpha.0...v1.5.2-alpha.1) (2026-02-07)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @vitus-labs/tools-rollup
|
|
13
33
|
|
|
14
34
|
## [1.5.2-alpha.0](https://github.com/vitus-labs/tools/compare/v1.5.1...v1.5.2-alpha.0) (2026-02-06)
|
|
15
35
|
|
package/lib/bin/run-build.js
CHANGED
|
File without changes
|
package/lib/bin/run-watch.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitus-labs/tools-rollup",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@rollup/plugin-terser": "^1.0.0",
|
|
44
44
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
45
45
|
"@types/node": "^25.5.0",
|
|
46
|
-
"@vitus-labs/tools-core": "1.12.
|
|
46
|
+
"@vitus-labs/tools-core": "^1.12.0",
|
|
47
47
|
"chalk": "^5.6.2",
|
|
48
48
|
"find-up": "^8.0.0",
|
|
49
49
|
"lodash-es": "^4.17.23",
|
|
@@ -61,8 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@types/lodash-es": "^4.17.12",
|
|
64
|
-
"@vitus-labs/tools-typescript": "1.12.
|
|
64
|
+
"@vitus-labs/tools-typescript": "^1.12.0",
|
|
65
65
|
"typescript": "^5.9.3"
|
|
66
|
-
}
|
|
67
|
-
"gitHead": "55197fba817ec0d61aae2d71cd82156029445d64"
|
|
66
|
+
}
|
|
68
67
|
}
|