bulk-release 2.11.4 → 2.11.6
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 +2 -0
- package/package.json +1 -1
- package/src/main/js/gh.js +3 -7
- package/src/main/js/util.js +14 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [2.11.6](https://github.com/semrel-extra/zx-bulk-release/compare/v2.11.5...v2.11.6) (2023-09-19)
|
|
2
|
+
|
|
3
|
+
### Fixes & improvements
|
|
4
|
+
* docs: mention generic-semantic-version-processing ([f9e1750](https://github.com/semrel-extra/zx-bulk-release/commit/f9e175094910f8fb27f5bed137b2a54aa5a7bdce))
|
|
5
|
+
|
|
6
|
+
## [2.11.5](https://github.com/semrel-extra/zx-bulk-release/compare/v2.11.4...v2.11.5) (2023-07-07)
|
|
7
|
+
|
|
8
|
+
### Fixes & improvements
|
|
9
|
+
* fix(assets): handle `commonPath` corner case ([1e9ac5e](https://github.com/semrel-extra/zx-bulk-release/commit/1e9ac5e64ac1c26a049f28b35c7c98db5bea7d34))
|
|
10
|
+
|
|
1
11
|
## [2.11.4](https://github.com/semrel-extra/zx-bulk-release/compare/v2.11.3...v2.11.4) (2023-06-29)
|
|
2
12
|
|
|
3
13
|
### Fixes & improvements
|
package/README.md
CHANGED
|
@@ -322,6 +322,8 @@ zx-bulk-release
|
|
|
322
322
|
* [ojkelly/yarn.build](https://github.com/ojkelly/yarn.build)
|
|
323
323
|
* [antfu/bumpp](https://github.com/antfu/bumpp)
|
|
324
324
|
* [googleapis/release-please](https://github.com/googleapis/release-please)
|
|
325
|
+
* [generic-semantic-version-processing](https://about.gitlab.com/blog/2021/09/28/generic-semantic-version-processing/)
|
|
326
|
+
* [jchip/fynpo](https://github.com/jchip/fynpo)
|
|
325
327
|
|
|
326
328
|
## License
|
|
327
329
|
[MIT](./LICENSE)
|
package/package.json
CHANGED
package/src/main/js/gh.js
CHANGED
|
@@ -4,7 +4,7 @@ import {log} from './log.js'
|
|
|
4
4
|
import {getRepo, pushCommit} from './git.js'
|
|
5
5
|
import {formatTag} from './meta.js'
|
|
6
6
|
import {formatReleaseNotes} from './changelog.js'
|
|
7
|
-
import {asArray, msgJoin} from './util.js'
|
|
7
|
+
import {asArray, getCommonPath, msgJoin} from './util.js'
|
|
8
8
|
|
|
9
9
|
// https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28#create-a-release
|
|
10
10
|
export const ghRelease = async (pkg) => {
|
|
@@ -74,13 +74,9 @@ export const ghPrepareAssets = async (assets, _cwd) => {
|
|
|
74
74
|
await fs.copy(path.join(cwd, files[0]), target)
|
|
75
75
|
return
|
|
76
76
|
}
|
|
77
|
+
const prefix = getCommonPath(files)
|
|
77
78
|
|
|
78
|
-
|
|
79
|
-
? files[0].lastIndexOf('/') + 1
|
|
80
|
-
: [...(files[0])].findIndex((c, i) => files.some(f => f.charAt(i) !== c))
|
|
81
|
-
const prefix = files[0].slice(0, common)
|
|
82
|
-
|
|
83
|
-
return $.raw`tar -C ${common ? path.join(cwd, prefix) : cwd} -cv${zip ? 'z' : ''}f ${target} ${files.map(f => common ? f.slice(common) : f).join(' ')}`
|
|
79
|
+
return $.raw`tar -C ${path.join(cwd, prefix)} -cv${zip ? 'z' : ''}f ${target} ${files.map(f => f.slice(prefix.length)).join(' ')}`
|
|
84
80
|
}))
|
|
85
81
|
|
|
86
82
|
return temp
|
package/src/main/js/util.js
CHANGED
|
@@ -46,3 +46,17 @@ export const memoizeBy = (fn, getKey = v => v, memo = new Map()) => async (...ar
|
|
|
46
46
|
export const camelize = s => s.replace(/-./g, x => x[1].toUpperCase())
|
|
47
47
|
|
|
48
48
|
export const asArray = v => Array.isArray(v) ? v : [v]
|
|
49
|
+
|
|
50
|
+
export const getCommonPath = files => {
|
|
51
|
+
const f0 = files[0]
|
|
52
|
+
const common = files.length === 1
|
|
53
|
+
? f0.lastIndexOf('/') + 1
|
|
54
|
+
: [...(f0)].findIndex((c, i) => files.some(f => f.charAt(i) !== c))
|
|
55
|
+
|
|
56
|
+
const p = f0.slice(0, common)
|
|
57
|
+
if (p.endsWith('/')) {
|
|
58
|
+
return p
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
return p.slice(0, p.lastIndexOf('/') + 1)
|
|
62
|
+
}
|