@dhis2/cli-utils 5.2.0-alpha.5 → 5.2.0-alpha.7
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 +3 -2
package/package.json
CHANGED
package/src/cmds/release.js
CHANGED
|
@@ -91,7 +91,8 @@ const handler = async ({ publish }) => {
|
|
|
91
91
|
const updateLockFile = [
|
|
92
92
|
'@semantic-release/exec',
|
|
93
93
|
{
|
|
94
|
-
|
|
94
|
+
successCmd:
|
|
95
|
+
'pnpm install --no-frozen-lockfile && git commit -am "chore(skip): update pnpm-lock.yml"', // ToDo: make it independent of npm
|
|
95
96
|
},
|
|
96
97
|
]
|
|
97
98
|
const deferPlugin = require('../support/semantic-release-defer-release')
|
|
@@ -102,11 +103,11 @@ const handler = async ({ publish }) => {
|
|
|
102
103
|
'@semantic-release/commit-analyzer',
|
|
103
104
|
'@semantic-release/release-notes-generator',
|
|
104
105
|
updateDepsPlugin,
|
|
105
|
-
updateLockFile,
|
|
106
106
|
changelogPlugin,
|
|
107
107
|
...publisher(publish, packages),
|
|
108
108
|
gitPlugin,
|
|
109
109
|
'@semantic-release/github',
|
|
110
|
+
updateLockFile,
|
|
110
111
|
]
|
|
111
112
|
|
|
112
113
|
/* rely on defaults for configuration, except for plugins as they
|