create-make 0.7.3 → 0.7.4

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 CHANGED
@@ -168,10 +168,14 @@ Create a __config.json__ file to add your custom templates:
168
168
  "vite-node-ts": {
169
169
  "name": "Vite Node",
170
170
  "repo": "https://github.com/z-starter/vite-node-ts",
171
- "args": [ {
172
- "str": "vite-node-ts", "value": "projectName"
173
- } ]
174
- } },
171
+ "args": [
172
+ {
173
+ "str": "vite-node-ts",
174
+ "value": "projectName"
175
+ }
176
+ ]
177
+ }
178
+ },
175
179
  "Frontend": {
176
180
  "vite-vanilla-ts": {
177
181
  "name": "Vite Vanilla",
@@ -179,7 +183,7 @@ Create a __config.json__ file to add your custom templates:
179
183
  "args": [
180
184
  {
181
185
  "str": "vite-vanilla-ts",
182
- "value": "projectName"
186
+ "value": "projectName"
183
187
  }
184
188
  ]
185
189
  }
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.3";
116
+ version = "0.7.4";
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.3";
114
+ version = "0.7.4";
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
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "0.7.3"
2
+ "version": "0.7.4"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-make",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
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",