@muverse/cli 0.1.6 → 0.1.8
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/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/package.json +2 -2
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,OAAO,EAAS,MAAM,aAAa,CAAC;AAInD,MAAM,CAAC,OAAO,OAAO,OAAQ,SAAQ,OAAO;IAC1C,OAAgB,WAAW,SAAkD;IAE7E,OAAgB,QAAQ,WAKtB;IAEF,MAAM,CAAC,IAAI;;;;MAMT;IAEF,OAAgB,KAAK;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,OAAO,EAAS,MAAM,aAAa,CAAC;AAInD,MAAM,CAAC,OAAO,OAAO,OAAQ,SAAQ,OAAO;IAC1C,OAAgB,WAAW,SAAkD;IAE7E,OAAgB,QAAQ,WAKtB;IAEF,MAAM,CAAC,IAAI;;;;MAMT;IAEF,OAAgB,KAAK;;;;;;;;;;;;MAoDnB;IAEI,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CA6B3B"}
|
package/dist/index.js
CHANGED
|
@@ -28,6 +28,7 @@ export default class Version extends Command {
|
|
|
28
28
|
"push-tags": Flags.boolean({
|
|
29
29
|
description: "Push tags to origin",
|
|
30
30
|
default: true,
|
|
31
|
+
allowNo: true,
|
|
31
32
|
}),
|
|
32
33
|
"prerelease-mode": Flags.boolean({
|
|
33
34
|
description: "Generate pre-release versions instead of final versions",
|
|
@@ -56,10 +57,12 @@ export default class Version extends Command {
|
|
|
56
57
|
"push-changes": Flags.boolean({
|
|
57
58
|
description: "Commit and push version changes and changelogs to remote",
|
|
58
59
|
default: true,
|
|
60
|
+
allowNo: true,
|
|
59
61
|
}),
|
|
60
62
|
"generate-changelog": Flags.boolean({
|
|
61
63
|
description: "Generate or update changelog files for changed modules",
|
|
62
64
|
default: true,
|
|
65
|
+
allowNo: true,
|
|
63
66
|
}),
|
|
64
67
|
};
|
|
65
68
|
async run() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@muverse/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Version Engine for Repo Semantic Evolution (CLI)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"types": "dist/index.d.ts",
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@oclif/core": "^4.8.0",
|
|
41
|
-
"@muverse/core": "^0.1.
|
|
41
|
+
"@muverse/core": "^0.1.8",
|
|
42
42
|
"oclif": "^4.14.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|