@nanoforge-dev/cli 1.0.0 → 1.1.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 CHANGED
@@ -1,15 +1,17 @@
1
1
  <div align="center">
2
- <br />
3
- <p>
4
- <a href="https://github.com/NanoForge-dev"><img src="https://github.com/NanoForge-dev/CLI/blob/main/.github/logo.png" width="546" alt="NanoForge" /></a>
5
- </p>
6
- <br />
7
- <p>
8
- <a href="https://github.com/NanoForge-dev/CLI/actions"><img src="https://github.com/NanoForge-dev/CLI/actions/workflows/tests.yml/badge.svg" alt="Tests status" /></a>
9
- <a href="https://github.com/NanoForge-dev/CLI/commits/main"><img src="https://img.shields.io/github/last-commit/NanoForge-dev/CLI.svg?logo=github&logoColor=ffffff" alt="Last commit." /></a>
10
- <a href="https://github.com/NanoForge-dev/CLI/graphs/contributors"><img src="https://img.shields.io/github/contributors/NanoForge-dev/CLI.svg?maxAge=3600&logo=github&logoColor=fff&color=00c7be" alt="contributors" /></a>
11
- <a href="https://github.com/NanoForge-dev/docs/actions/workflows/deploy.yml"><img src="https://github.com/NanoForge-dev/docs/actions/workflows/deploy.yml/badge.svg" alt="Documentation status" /></a>
12
- </p>
2
+ <br />
3
+ <p>
4
+ <a href="https://github.com/NanoForge-dev"><img src="https://github.com/NanoForge-dev/CLI/blob/main/.github/logo.png" width="546" alt="NanoForge" /></a>
5
+ </p>
6
+ <br />
7
+ <p>
8
+ <a href="https://www.npmjs.com/package/@nanoforge-dev/cli"><img src="https://img.shields.io/npm/v/@nanoforge-dev/cli.svg?maxAge=3600" alt="npm version" /></a>
9
+ <a href="https://www.npmjs.com/package/@nanoforge-dev/cli"><img src="https://img.shields.io/npm/dt/@nanoforge-dev/cli.svg?maxAge=3600" alt="npm downloads" /></a>
10
+ <a href="https://github.com/NanoForge-dev/CLI/actions/workflows/tests.yml"><img src="https://github.com/NanoForge-dev/CLI/actions/workflows/tests.yml/badge.svg" alt="Tests status" /></a>
11
+ <a href="https://github.com/NanoForge-dev/CLI/actions/workflows/push-docs.yml"><img src="https://github.com/NanoForge-dev/CLI/actions/workflows/push-docs.yml/badge.svg" alt="Documentation status" /></a>
12
+ <a href="https://github.com/NanoForge-dev/CLI/commits/main"><img src="https://img.shields.io/github/last-commit/NanoForge-dev/CLI.svg?logo=github&logoColor=ffffff" alt="Last commit" /></a>
13
+ <a href="https://github.com/NanoForge-dev/CLI/graphs/contributors"><img src="https://img.shields.io/github/contributors/NanoForge-dev/CLI.svg?maxAge=3600&logo=github&logoColor=fff&color=00c7be" alt="Contributors" /></a>
14
+ </p>
13
15
  </div>
14
16
 
15
17
  ## About
@@ -52,6 +54,14 @@ Used to build your nanoforge project.
52
54
  - `-c, --config [config]` path to the config file.
53
55
  - `--client-outDir [clientDirectory]` specifies the client directory.
54
56
  - `--server-outDir [serverDirectory]` specifies the server directory.
57
+ - `--watch` build app in watching mode. (default : `false`)
58
+
59
+ ### `dev`
60
+
61
+ Used to run your nanoforge project in dev mode.
62
+
63
+ - `-d, --directory [directory]` specify the directory of the nanoforge project to build.
64
+ - `--generate` generate app files from config, like generate command in dev mode. (default : `false`)
55
65
 
56
66
  ### `generate`
57
67
 
@@ -59,6 +69,7 @@ Used to generate nanoforge project files from config
59
69
 
60
70
  - `-d, --directory [directory]` specify the directory of the nanoforge project to build.
61
71
  - `-c, --config [config]` path to the config file.
72
+ - `--watch` generate app in watching mode. (default : `false`)
62
73
 
63
74
  ### `install` or `add`
64
75
 
@@ -93,6 +104,7 @@ Used to start your nanoforge project
93
104
  - `-p, --client-port [clientPort]` specify the port of the loader (the website to load the game)
94
105
  - `--game-exposure-port [gameExposurePort]` specify the port of the game exposure
95
106
  - `--server-port [serverPort]` specify the port of the server
107
+ - `--watch` run app in watching mode. (default : `false`)
96
108
 
97
109
  ## Contributing
98
110