@struere/cli 0.2.6 → 0.2.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/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1687,8 +1687,8 @@ import { Command as Command6 } from "commander";
|
|
|
1687
1687
|
import chalk6 from "chalk";
|
|
1688
1688
|
import ora6 from "ora";
|
|
1689
1689
|
import { join as join10 } from "path";
|
|
1690
|
-
var deployCommand = new Command6("deploy").description("Deploy agent to
|
|
1691
|
-
const environment =
|
|
1690
|
+
var deployCommand = new Command6("deploy").description("Deploy agent to production").option("--dry-run", "Show what would be deployed without deploying").action(async (options) => {
|
|
1691
|
+
const environment = "production";
|
|
1692
1692
|
const spinner = ora6();
|
|
1693
1693
|
const cwd = process.cwd();
|
|
1694
1694
|
console.log();
|
|
@@ -2114,7 +2114,7 @@ var whoamiCommand = new Command11("whoami").description("Show current logged in
|
|
|
2114
2114
|
});
|
|
2115
2115
|
|
|
2116
2116
|
// src/index.ts
|
|
2117
|
-
var CURRENT_VERSION = "0.2.
|
|
2117
|
+
var CURRENT_VERSION = "0.2.7";
|
|
2118
2118
|
async function checkForUpdates() {
|
|
2119
2119
|
try {
|
|
2120
2120
|
const response = await fetch("https://registry.npmjs.org/@struere/cli/latest", {
|