generateproj 2.5.0 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/Cpp/cpp.js +1 -0
- package/dist/HTML/html.js +1 -1
- package/dist/Java/java.js +1 -0
- package/dist/Python/python.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
> **GenerateProj** it is a CLI tool built to streamline and accelerate software project development.
|
|
6
6
|
> It features automated scaffolding for the most popular languages and development environments: **Java**, **Node.js**, **HTML/CSS/JavaScript**, **C++**, **astro**, **python**, **react (react+vite)** e **nextjs base**.
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
With a simple and interactive interface, 'generateproj' guides you in choosing the type of project to create, generating a complete and ready-to-use directory structure for you, including essential files such as 'README-.md', '.gitignore', 'main.*' and organized folders for each language.
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
package/dist/Cpp/cpp.js
CHANGED
|
@@ -3,6 +3,7 @@ const fs = require('fs');
|
|
|
3
3
|
const path = require('path');
|
|
4
4
|
const askQuestion = require('../utility/askQuestion');
|
|
5
5
|
const gitIsAvailable = require('../utility/gitIsAvailable');
|
|
6
|
+
const { execSync } = require('child_process');
|
|
6
7
|
|
|
7
8
|
/**
|
|
8
9
|
* Function to create a new C++ project.
|
package/dist/HTML/html.js
CHANGED
|
@@ -3,7 +3,7 @@ const fs = require('fs');
|
|
|
3
3
|
const path = require('path');
|
|
4
4
|
const askQuestion = require('../utility/askQuestion');
|
|
5
5
|
const gitIsAvailable = require('../utility/gitIsAvailable');
|
|
6
|
-
|
|
6
|
+
const { execSync } = require('child_process');
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* Function to create a new HTML project.
|
package/dist/Java/java.js
CHANGED
package/dist/Python/python.js
CHANGED