Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
212 changes: 106 additions & 106 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Type: Component
Name: fc
Provider:
- 阿里云
Version: 0.1.64
Version: 0.1.65
Description: Basic components of Alibaba cloud functional computing
HomePage: https://github.com/devsapp/fc
Tags:
Expand Down
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -666,9 +666,9 @@ export default class FcBaseComponent extends EntryPublicMethod {
case 'deploy':
core.help(HELP.ENV_DEPLOY);
return;
case 'remove':
core.help(HELP.ENV_REMOVE);
return;
// case 'remove':
// core.help(HELP.ENV_REMOVE);
// return;
case 'info':
core.help(HELP.ENV_INFO);
return;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/help/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const ENV_HELP_INFO = [
{ name: 'list-templates', summary: 'List all environment templates.' },
{ name: 'init', summary: 'Create a new environment interactive. Help command [s env init -h]' },
{ name: 'deploy', summary: 'Deploy an environment associated with templates. Help command [s env deploy -h]' },
{ name: 'remove', summary: 'Destroy an environment. Help command [s env deploy -h].' },
// { name: 'remove', summary: 'Destroy an environment. Help command [s env deploy -h].' },
{ name: 'info', summary: 'Show the information of a environment. Help command [s env info -h]' },
{ name: 'list', summary: 'List all environments associated with specified aliyun account.' },
],
Expand Down