@biffo/cli 0.33.3 → 0.33.5
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 +1 -1
- package/dist/index.js +8 -1
- package/package.json +1 -1
package/core.version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.33.
|
|
1
|
+
0.33.5
|
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
|
-
|
|
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);
|