Skip to content

Commit

Permalink
fix(init): include manifest_net with io template
Browse files Browse the repository at this point in the history
  • Loading branch information
HipsterBrown committed Jan 4, 2024
1 parent dd7bbd5 commit b41cfde
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,12 @@ const command: GluegunCommand = {

const includes = [
io
? '"$(MODDABLE)/modules/io/manifest.json"'
? ['"$(MODDABLE)/modules/io/manifest.json"', '"$(MODDABLE)/examples/manifest_net.json"']
: '"$(MODDABLE)/examples/manifest_base.json"',
typescript && '"$(MODDABLE)/examples/manifest_typings.json"',
]
.filter(Boolean)
.flat()
.join(',\n\t')

const defines: String = asyncMain
Expand Down

0 comments on commit b41cfde

Please sign in to comment.