Skip to content

Commit

Permalink
Remove strict
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Bardadym committed Dec 12, 2023
1 parent dfc9477 commit 9ed44b4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bin/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ const argv = yargs(hideBin(process.argv))
type: "boolean",
default: false,
})
.strict()
.help()
.parseSync();

Expand Down Expand Up @@ -104,7 +103,7 @@ const runForPluginJson = async ({ title, template, filename, open }: CliArgs, fi

const fileContent = await renderTemplate(template, {
title,
data,
data: JSON.stringify(data),
});

await fs.mkdir(path.dirname(filename), { recursive: true });
Expand Down

0 comments on commit 9ed44b4

Please sign in to comment.