@comet/create-app 1.124.0 → 1.125.0
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/lib/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ npx @comet/create-app <project-name>
|
|
|
16
16
|
The following arguments can be passed to customize the project setup:
|
|
17
17
|
|
|
18
18
|
- `project-name` (required): Specifies the name of the project. It will be used as the directory name for the project.
|
|
19
|
-
-
|
|
19
|
+
- `--ni` or `--no-install`: Disables the automatic installation of dependencies.
|
|
20
20
|
- `-r` or `--repository <repository>`: Repository to clone from. Defaults to `https://github.com/vivid-planet/comet-starter.git`.
|
|
21
21
|
- `-b` or `--branch <branch>`: Branch to checkout. Defaults to `main`.
|
|
22
22
|
- `-v` or `--verbose`: Enables extra console logs for verbose output.
|
package/lib/index.js
CHANGED
|
@@ -21,7 +21,7 @@ void (async () => {
|
|
|
21
21
|
program
|
|
22
22
|
.argument("<projectName>", "Sets the name of the project.")
|
|
23
23
|
.option("-v, --verbose", "Enables extra console logs for verbose output.")
|
|
24
|
-
.option("
|
|
24
|
+
.option("--ni, --no-install", "Disables the automatic installation of dependencies.")
|
|
25
25
|
.option("-r, --repository <repository>", "Repository to clone from.")
|
|
26
26
|
.option("-b, --branch <branch>", "Branch to checkout.")
|
|
27
27
|
.action((projectName, options) => {
|
package/package.json
CHANGED