create-make 0.7.4 → 0.7.5
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 +5 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/version.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
# create-make
|
|
2
2
|
[](https://www.npmjs.com/package/create-make) [](https://www.npmjs.com/package/create-make)
|
|
3
|
+
|
|
3
4
|
An advanced CLI tool for creating projects from GitHub repositories or custom templates with lightning-fast setup.
|
|
4
5
|
|
|
6
|
+
## 🎥 Video Demo
|
|
7
|
+
|
|
8
|
+
[](https://www.youtube.com/watch?v=ZSE7zMnBFkw)
|
|
9
|
+
|
|
5
10
|
## ✨ Features
|
|
6
11
|
- ⚡ Blazing Fast: Clone templates directly from GitHub or local configs
|
|
7
12
|
|
package/dist/index.cjs
CHANGED
|
@@ -113,7 +113,7 @@ var getCli = function() {
|
|
|
113
113
|
return _ts_generator$2(this, function(_state) {
|
|
114
114
|
switch (_state.label) {
|
|
115
115
|
case 0:
|
|
116
|
-
version = "0.7.
|
|
116
|
+
version = "0.7.5";
|
|
117
117
|
yargsInstance = yargs(helpers.hideBin(process.argv)).scriptName("create-make").usage("Usage: $0 [projectName] [options]").epilogue("\n\u{1F4E6} Create projects in seconds with built-in or custom templates!\n\nQuick Start:\n \u2022 Interactive mode: $0 (Guided setup)\n \u2022 Built-in template: $0 my-app -t vite-vanilla-ts (Skip prompts)\n \u2022 Custom template: $0 my-project -o express-api (Use custom config)\n\n\u{1F4A1} Tips:\n \u2022 When using --template or --other-template, projectName is required\n \u2022 Omit projectName to be prompted for it\n \u2022 Add custom templates via config file at ".concat(CONFIG_PATH, "\n\nFor more information, visit: https://github.com/z-npm/create-make\n")).example("$0", "Start interactive mode - guided project setup").example("$0 my-project", "Set project name, then choose template interactively").example("$0 my-app --template vite-vanilla-ts", "Create Vite web project (skips prompts)").example("$0 my-api -t vite-node-ts", "Create Vite Node project (alias, skips prompts)").example("$0 my-project --other-template my-backend", "Use custom template from config").example("$0 my-site -o react-starter", "Use custom template (alias)").option("template", { alias: "t", type: "string", describe: "Use built-in template (skips category/template selection)", requiresArg: true, conflicts: "other-template" }).option("other-template", { alias: "o", type: "string", describe: "Use custom template from config (skips to custom template selection)", requiresArg: true, conflicts: "template" }).option("help", { alias: "h", type: "boolean", describe: "Show help information" }).check(function(argv2) {
|
|
118
118
|
if ((argv2.template || argv2["other-template"]) && !argv2._[0]) {
|
|
119
119
|
throw new Error("Project name is required when using --template or --other-template");
|
package/dist/index.js
CHANGED
|
@@ -111,7 +111,7 @@ var getCli = function() {
|
|
|
111
111
|
return _ts_generator$2(this, function(_state) {
|
|
112
112
|
switch (_state.label) {
|
|
113
113
|
case 0:
|
|
114
|
-
version = "0.7.
|
|
114
|
+
version = "0.7.5";
|
|
115
115
|
yargsInstance = yargs(hideBin(process.argv)).scriptName("create-make").usage("Usage: $0 [projectName] [options]").epilogue("\n\u{1F4E6} Create projects in seconds with built-in or custom templates!\n\nQuick Start:\n \u2022 Interactive mode: $0 (Guided setup)\n \u2022 Built-in template: $0 my-app -t vite-vanilla-ts (Skip prompts)\n \u2022 Custom template: $0 my-project -o express-api (Use custom config)\n\n\u{1F4A1} Tips:\n \u2022 When using --template or --other-template, projectName is required\n \u2022 Omit projectName to be prompted for it\n \u2022 Add custom templates via config file at ".concat(CONFIG_PATH, "\n\nFor more information, visit: https://github.com/z-npm/create-make\n")).example("$0", "Start interactive mode - guided project setup").example("$0 my-project", "Set project name, then choose template interactively").example("$0 my-app --template vite-vanilla-ts", "Create Vite web project (skips prompts)").example("$0 my-api -t vite-node-ts", "Create Vite Node project (alias, skips prompts)").example("$0 my-project --other-template my-backend", "Use custom template from config").example("$0 my-site -o react-starter", "Use custom template (alias)").option("template", { alias: "t", type: "string", describe: "Use built-in template (skips category/template selection)", requiresArg: true, conflicts: "other-template" }).option("other-template", { alias: "o", type: "string", describe: "Use custom template from config (skips to custom template selection)", requiresArg: true, conflicts: "template" }).option("help", { alias: "h", type: "boolean", describe: "Show help information" }).check(function(argv2) {
|
|
116
116
|
if ((argv2.template || argv2["other-template"]) && !argv2._[0]) {
|
|
117
117
|
throw new Error("Project name is required when using --template or --other-template");
|
package/dist/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-make",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.5",
|
|
4
4
|
"description": "An advanced CLI tool for creating projects from GitHub repositories or custom templates with lightning-fast setup.",
|
|
5
5
|
"homepage": "https://github.com/z-npm/create-make#readme",
|
|
6
6
|
"docs": "https://github.com/z-npm/create-make#readme",
|