@agilecustoms/envctl 0.30.0 → 0.30.2

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.
@@ -186,7 +186,7 @@ export class EnvCtl {
186
186
  return;
187
187
  }
188
188
  }
189
- console.log('Deleting env');
189
+ console.log('Sending delete command');
190
190
  const message = await this.envApi.delete(env);
191
191
  console.log(message);
192
192
  }
@@ -228,6 +228,7 @@ export class EnvCtl {
228
228
  if (!env) {
229
229
  throw new KnownException(`Environment ${key} does not exist`);
230
230
  }
231
+ console.log(`Env status: ${env.status}`);
231
232
  return env;
232
233
  }
233
234
  async promptUnlock(env, statuses = [EnvStatus.Deploying, EnvStatus.Updating]) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agilecustoms/envctl",
3
3
  "description": "node.js CLI client for manage environments",
4
- "version": "0.30.0",
4
+ "version": "0.30.2",
5
5
  "author": "Alex Chekulaev",
6
6
  "type": "module",
7
7
  "bin": {