@versu/cli 0.4.0 → 0.5.0

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 CHANGED
@@ -20,7 +20,6 @@ export default class Version extends Command {
20
20
  "append-snapshot": import("@oclif/core/interfaces").BooleanFlag<boolean>;
21
21
  "push-changes": import("@oclif/core/interfaces").BooleanFlag<boolean>;
22
22
  "generate-changelog": import("@oclif/core/interfaces").BooleanFlag<boolean>;
23
- "output-file": import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
24
23
  };
25
24
  run(): Promise<void>;
26
25
  }
@@ -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;;;;;;;;;;;;;;MAyDnB;IAEI,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CA8B3B"}
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;;;;;;;;;;;;;MAqDnB;IAEI,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;CA6B3B"}
package/dist/index.js CHANGED
@@ -65,10 +65,6 @@ export default class Version extends Command {
65
65
  default: true,
66
66
  allowNo: true,
67
67
  }),
68
- "output-file": Flags.string({
69
- description: "Path to the output file for project information",
70
- default: "project-information.json",
71
- }),
72
68
  };
73
69
  async run() {
74
70
  const { flags, args } = await this.parse(Version);
@@ -86,8 +82,7 @@ export default class Version extends Command {
86
82
  timestampVersions: flags["timestamp-versions"],
87
83
  appendSnapshot: flags["append-snapshot"],
88
84
  pushChanges: flags["push-changes"],
89
- generateChangelog: flags["generate-changelog"],
90
- outputFile: flags["output-file"],
85
+ generateChangelog: flags["generate-changelog"]
91
86
  };
92
87
  const runner = new VersuRunner(options);
93
88
  await runner.run();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versu/cli",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
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
- "@versu/core": "^0.4.0",
41
+ "@versu/core": "^0.5.0",
42
42
  "oclif": "^4.14.0"
43
43
  },
44
44
  "devDependencies": {