@agilecustoms/envctl 0.22.0 → 0.22.1

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.
@@ -178,8 +178,8 @@ export class EnvCtl {
178
178
  }
179
179
  console.log('Deleting env');
180
180
  }
181
- await this.envApi.delete(env);
182
- console.log(`Env ${env.key} is scheduled for deletion`);
181
+ const message = await this.envApi.delete(env);
182
+ console.log(message);
183
183
  }
184
184
  async destroy(project, envName, tfArgs, force, cwd) {
185
185
  const env = await this.get(project, envName);
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.22.0",
4
+ "version": "0.22.1",
5
5
  "author": "Alex Chekulaev",
6
6
  "type": "module",
7
7
  "bin": {