@dhis2/cli-utils 5.2.0-alpha.8 → 5.2.0-alpha.9
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/package.json +1 -1
- package/src/cmds/release.js +1 -13
package/package.json
CHANGED
package/src/cmds/release.js
CHANGED
|
@@ -110,19 +110,7 @@ const handler = async ({ publish }) => {
|
|
|
110
110
|
[
|
|
111
111
|
'@semantic-release/git',
|
|
112
112
|
{
|
|
113
|
-
assets: [
|
|
114
|
-
packages
|
|
115
|
-
.map(pkgJsonPath =>
|
|
116
|
-
path.join(
|
|
117
|
-
path.dirname(pkgJsonPath),
|
|
118
|
-
'pnpm-lock.yaml'
|
|
119
|
-
)
|
|
120
|
-
)
|
|
121
|
-
.filter(existsSync)
|
|
122
|
-
.map(pkgJsonPath =>
|
|
123
|
-
path.relative(process.cwd(), pkgJsonPath)
|
|
124
|
-
),
|
|
125
|
-
],
|
|
113
|
+
assets: ['pnpm-lock.yaml'],
|
|
126
114
|
message:
|
|
127
115
|
'chore: bump pnpm-lock.yml ${nextRelease.version} [skip ci]',
|
|
128
116
|
},
|