From b41cfdec8f192ec2a2ec414998b87d5d02e1cd63 Mon Sep 17 00:00:00 2001 From: HipsterBrown Date: Wed, 3 Jan 2024 22:26:10 -0500 Subject: [PATCH] fix(init): include manifest_net with io template --- src/commands/init.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/init.ts b/src/commands/init.ts index a7c525a..564006e 100644 --- a/src/commands/init.ts +++ b/src/commands/init.ts @@ -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