diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index aa42c08..bd13d5a 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,10 +4,10 @@
-
+
+
-
@@ -160,7 +160,7 @@
-
+
@@ -450,7 +450,15 @@
1719170769791
-
+
+
+ 1719171439639
+
+
+
+ 1719171439639
+
+
@@ -471,7 +479,6 @@
-
@@ -496,7 +503,8 @@
-
+
+
diff --git a/Readme.md b/Readme.md
index 63c722f..67270fa 100644
--- a/Readme.md
+++ b/Readme.md
@@ -48,7 +48,9 @@ npm run dev
### Create a new tool
-`npm run script:create:tool my-tool-name folder1/folder2`
+```bash
+npm run script:create:tool my-tool-name folder1/folder2
+```
## Contributors
diff --git a/scripts/create-tool.mjs b/scripts/create-tool.mjs
index eeaa18e..4739730 100644
--- a/scripts/create-tool.mjs
+++ b/scripts/create-tool.mjs
@@ -31,6 +31,7 @@ function createFolderStructure(basePath, foldersToCreateIndexCount) {
const indexPath = join(currentPath, 'index.ts')
if (!fs.existsSync(indexPath) && index < folderArray.length - 1 && index >= folderArray.length - 1 - foldersToCreateIndexCount) {
fs.writeFileSync(indexPath, '// index.ts file')
+ console.log(`File created: ${indexPath}`)
}
// Recursively create the next folder
recursiveCreate(currentPath, index + 1)