zx-bulk-release 3.0.1 → 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
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
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
|
+
|
|
1
6
|
## [3.0.1](https://github.com/semrel-extra/zx-bulk-release/compare/v3.0.0...v3.0.1) (2026-04-11)
|
|
2
7
|
|
|
3
8
|
### Fixes & improvements
|
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})
|