Skip to content

Commit c4d5667

Browse files
committed
fix
1 parent ec1bdf7 commit c4d5667

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const createCommand = new Command<GlobalOptions>()
5050
.arguments("[root-path:string]")
5151
.action(
5252
async (
53-
{ debug, endpoint, org: initOrg, config },
53+
{ debug, endpoint, org: initOrg, config, allowNodeModules },
5454
rootPath = Deno.cwd(),
5555
) => {
5656
const configContent = await readConfig(rootPath, config);
@@ -67,7 +67,7 @@ const createCommand = new Command<GlobalOptions>()
6767
endpoint,
6868
rootPath,
6969
configContent,
70-
options.allowNodeModules ?? false,
70+
allowNodeModules ?? false,
7171
initOrg,
7272
);
7373
},

0 commit comments

Comments
 (0)