zx-bulk-release 3.0.0 → 3.0.2
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 +10 -0
- package/README.md +4 -0
- package/package.json +2 -2
- package/src/main/js/post/depot/steps/pack.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [3.0.2](https://github.com/semrel-extra/zx-bulk-release/compare/v3.0.1...v3.0.2) (2026-04-11)
|
|
2
|
+
|
|
3
|
+
### Fixes & improvements
|
|
4
|
+
* fix: fix output dir resolve ([c0d0d86](https://github.com/semrel-extra/zx-bulk-release/commit/c0d0d86a8944bb8042f198e9fc19bf5aae66e05a))
|
|
5
|
+
|
|
6
|
+
## [3.0.1](https://github.com/semrel-extra/zx-bulk-release/compare/v3.0.0...v3.0.1) (2026-04-11)
|
|
7
|
+
|
|
8
|
+
### Fixes & improvements
|
|
9
|
+
* docs: add v2 > v3 migration guide ([18f68fa](https://github.com/semrel-extra/zx-bulk-release/commit/18f68fa62d700ae48f0f2da19b42bf91b23b5d14))
|
|
10
|
+
|
|
1
11
|
## [3.0.0](https://github.com/semrel-extra/zx-bulk-release/compare/v2.21.1...v3.0.0) (2026-04-11)
|
|
2
12
|
|
|
3
13
|
### Fixes & improvements
|
package/README.md
CHANGED
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
* No extra builds. The required deps are fetched from the pkg registry (`npmFetch` config opt).
|
|
17
17
|
* **Two-phase pipeline**: build and delivery can run as separate jobs with isolated credentials.
|
|
18
18
|
|
|
19
|
+
|
|
20
|
+
> [!NOTE]
|
|
21
|
+
> **[Migration guide v2 → v3](./MIGRATION_V2_V3.md)**
|
|
22
|
+
|
|
19
23
|
## Roadmap
|
|
20
24
|
* [x] Store release metrics to `meta`.
|
|
21
25
|
* [x] Two-phase pipeline (pack / deliver).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zx-bulk-release",
|
|
3
3
|
"alias": "bulk-release",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.2",
|
|
5
5
|
"description": "zx-based alternative for multi-semantic-release",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"c8": "^11.0.0",
|
|
38
38
|
"esbuild": "^0.28.0",
|
|
39
39
|
"uvu": "^0.5.6",
|
|
40
|
-
"verdaccio": "6.
|
|
40
|
+
"verdaccio": "6.5.0"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
@@ -21,7 +21,7 @@ export const pack = memoizeBy(async (pkg, ctx = pkg.ctx) => {
|
|
|
21
21
|
await prepare(active, pkg)
|
|
22
22
|
await npmPersist(pkg)
|
|
23
23
|
|
|
24
|
-
const outputDir = flags.pack ? (typeof flags.pack === 'string' ? flags.pack : 'parcels') : null
|
|
24
|
+
const outputDir = flags.pack ? path.resolve(ctx.git.root, typeof flags.pack === 'string' ? flags.pack : 'parcels') : null
|
|
25
25
|
const stageDir = outputDir || tempy.temporaryDirectory()
|
|
26
26
|
if (outputDir) await fs.ensureDir(outputDir)
|
|
27
27
|
const {repoName, repoHost, originUrl} = await getRepo(pkg.absPath, {basicAuth: pkg.config.ghBasicAuth})
|