Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: custom scaffold #802

Merged
merged 10 commits into from
Mar 4, 2021
Prev Previous commit
Next Next commit
feat: add entry in iceworks-app
  • Loading branch information
luhc228 committed Mar 1, 2021
commit 0cb139c63084fb0e4906cef0d80c291f4b407ed3
8 changes: 8 additions & 0 deletions extensions/iceworks-app/src/quickPicks/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ export default [
return vscode.extensions.getExtension('iceworks-team.iceworks-project-creator');
},
},
{
label: i18n.format('extension.iceworksApp.showEntriesQuickPick.customScaffold.label'),
detail: i18n.format('extension.iceworksApp.showEntriesQuickPick.customScaffold.detail'),
command: 'iceworks-project-creator.custom-scaffold.start',
async condition() {
return vscode.extensions.getExtension('iceworks-team.iceworks-project-creator');
},
},
{
label: i18n.format('extension.iceworksApp.showEntriesQuickPick.dashboard.label'),
detail: i18n.format('extension.iceworksApp.showEntriesQuickPick.dashboard.detail'),
Expand Down