diff options
author | 2022-07-23 23:07:53 +0200 | |
---|---|---|
committer | 2022-07-23 23:07:53 +0200 | |
commit | 1c7257eeb05d7906665987361ab3fa743d7b91da (patch) | |
tree | ee613cb0b3e4512a7606c65b5b3131658608b18c /scripts/create-tool.mjs | |
parent | 214084262cec7fb881fd397626356b080ea1a5cc (diff) | |
download | it-tools-1c7257eeb05d7906665987361ab3fa743d7b91da.tar.gz it-tools-1c7257eeb05d7906665987361ab3fa743d7b91da.tar.zst it-tools-1c7257eeb05d7906665987361ab3fa743d7b91da.zip |
fix(script):fixed missing paranthesis in tool generator script
Diffstat (limited to '')
-rw-r--r-- | scripts/create-tool.mjs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/create-tool.mjs b/scripts/create-tool.mjs index 97b99b2..33ab807 100644 --- a/scripts/create-tool.mjs +++ b/scripts/create-tool.mjs @@ -1,6 +1,6 @@ -import { join, dirname } from 'path'; -import { fileURLToPath } from 'url'; import { mkdir, readFile, writeFile } from 'fs/promises'; +import { dirname, join } from 'path'; +import { fileURLToPath } from 'url'; const currentDirname = dirname(fileURLToPath(import.meta.url)); @@ -55,7 +55,7 @@ export const tool = defineTool({ keywords: ['${toolName.split('-').join("', '")}'], component: () => import('./${toolName}.vue'), icon: ArrowsShuffle, -}; +}); `, ); |