create-nextspark-app 0.1.0-beta.75 → 0.1.0-beta.76
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/bin/index.js +0 -0
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
File without changes
|
package/dist/index.js
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
// src/index.ts
|
|
4
4
|
import { Command } from "commander";
|
|
5
5
|
import chalk2 from "chalk";
|
|
6
|
+
import { readFileSync } from "fs";
|
|
6
7
|
|
|
7
8
|
// src/create.ts
|
|
8
9
|
import path from "path";
|
|
@@ -159,8 +160,9 @@ async function getProjectOptions(projectName, skipPrompts) {
|
|
|
159
160
|
}
|
|
160
161
|
|
|
161
162
|
// src/index.ts
|
|
163
|
+
var pkg = JSON.parse(readFileSync(new URL("../package.json", import.meta.url), "utf-8"));
|
|
162
164
|
var program = new Command();
|
|
163
|
-
program.name("create-nextspark-app").description("Create a new NextSpark SaaS project").version(
|
|
165
|
+
program.name("create-nextspark-app").description("Create a new NextSpark SaaS project").version(pkg.version).argument("[project-name]", "Name of the project").option("--preset <preset>", "Use a preset (saas, blog, crm)").option("--name <name>", "Project name (non-interactive mode)").option("--slug <slug>", "Project slug (non-interactive mode)").option("--description <desc>", "Project description (non-interactive mode)").option("--theme <theme>", "Theme to use (default, blog, crm, productivity, none)").option("--plugins <plugins>", "Plugins to install (comma-separated)").option("-y, --yes", "Skip prompts and use defaults", false).action(async (projectName, options) => {
|
|
164
166
|
console.log();
|
|
165
167
|
console.log(chalk2.bold.cyan(" NextSpark"));
|
|
166
168
|
console.log(chalk2.dim(" Create a new SaaS project"));
|