Skip to content

Commit

Permalink
Merge pull request #7 from ConstructFund/add_sdk_v2
Browse files Browse the repository at this point in the history
add sdk v2 to cli
  • Loading branch information
skymen authored Sep 16, 2024
2 parents 7829961 + 59362c1 commit 2d4d417
Show file tree
Hide file tree
Showing 4 changed files with 207 additions and 88 deletions.
8 changes: 8 additions & 0 deletions commands/scaffold.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,18 @@ const addonTemplate = {
url: "https://github.com/ConstructFund/c3ide2-framework/plugins",
config: "pluginConfig.js",
},
plugin_v2: {
url: "https://github.com/ConstructFund/c3ide2-framework/plugins_v2#add_sdk_v2_templates",
config: "pluginConfig.js",
},
behavior: {
url: "https://github.com/ConstructFund/c3ide2-framework/behaviors",
config: "behaviorConfig.js",
},
behavior_v2: {
url: "https://github.com/ConstructFund/c3ide2-framework/behaviors_v2#add_sdk_v2_templates",
config: "behaviorConfig.js",
},
effect: {
url: "https://github.com/ConstructFund/c3ide2-framework/effects",
config: "effectConfig.js",
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const questions = [
type: 'list',
name: 'addonType',
message: 'Select addon type ...',
choices: ['plugin', 'behavior', 'effect', 'theme']
choices: ['plugin', 'plugin_v2', 'behavior', 'behavior_v2', 'effect', 'theme']
},
{
type: 'input',
Expand Down
Loading

0 comments on commit 2d4d417

Please sign in to comment.