Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 19b7e26

Browse files
committed
Revert "remove create extension wip for release"
This reverts commit 538009a.
1 parent b6afc76 commit 19b7e26

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
"onCommand:quarto.walkthrough.verifyInstallation",
6464
"onCommand:quarto.walkthrough.newDocument",
6565
"onCommand:quarto.createProject",
66+
"onCommand:quarto.createExtension",
6667
"workspaceContains:**/*.qmd",
6768
"workspaceContains:**/_quarto.{yml,yaml}",
6869
"workspaceContains:**/_extension.{yml,yaml}",
@@ -250,6 +251,11 @@
250251
"title": "Create Project",
251252
"category": "Quarto"
252253
},
254+
{
255+
"command": "quarto.createExtension",
256+
"title": "Create Extension",
257+
"category": "Quarto"
258+
},
253259
{
254260
"command": "quarto.renderProject",
255261
"title": "Render Project",
@@ -549,6 +555,9 @@
549555
{
550556
"command": "quarto.createProject"
551557
},
558+
{
559+
"command": "quarto.createExtension"
560+
},
552561
{
553562
"command": "quarto.renderProject"
554563
},

src/providers/create/create.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ export async function activateCreate(
2626
// commands
2727
return [
2828
new CreateProjectCommand(context, quartoContext),
29-
// new CreateExtensionCommand(context, quartoContext),
29+
new CreateExtensionCommand(context, quartoContext),
3030
];
3131
}

0 commit comments

Comments
 (0)