@biffo/cli 0.33.3 → 0.33.4

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/core.version CHANGED
@@ -1 +1 @@
1
- 0.33.3
1
+ 0.33.4
package/dist/index.js CHANGED
@@ -6071,7 +6071,14 @@ function resolveGithubToken4() {
6071
6071
 
6072
6072
  // src/index.ts
6073
6073
  var program = new Command23();
6074
- program.name("biffo").description("Biffo \u2014 opinionated project scaffolding and deployment CLI").version("0.0.0");
6074
+ function cliVersion() {
6075
+ try {
6076
+ return getLatestCoreVersion();
6077
+ } catch {
6078
+ return "unknown";
6079
+ }
6080
+ }
6081
+ program.name("biffo").description("Biffo \u2014 opinionated project scaffolding and deployment CLI").version(cliVersion());
6075
6082
  program.addCommand(initCommand);
6076
6083
  program.addCommand(deployCommand);
6077
6084
  program.addCommand(destroyCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biffo/cli",
3
- "version": "0.33.3",
3
+ "version": "0.33.4",
4
4
  "description": "Biffo project scaffolding CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",