@vercube/cli 0.0.1-beta.2 → 0.0.1-beta.3
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 +4 -12
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -22,17 +22,9 @@
|
|
|
22
22
|
|
|
23
23
|
An ultra-efficient JavaScript server framework that runs anywhere - Node.js, Bun, or Deno - with unmatched flexibility and complete configurability for developers who refuse to sacrifice speed or control.
|
|
24
24
|
|
|
25
|
+
## Command Line Interface
|
|
26
|
+
The CLI module provides a powerful command-line interface for Vercube applications, making it easy to create, develop, and manage your projects. It offers intuitive commands for project scaffolding, development server management, and production builds.
|
|
25
27
|
|
|
26
|
-
## <a name="documentation">📖 Documentation</a>
|
|
27
|
-
Comprehensive documentation is available at [vercube.dev](https://vercube.dev). There you'll find detailed module descriptions, project information, guides, and everything else you need to know about Vercube.
|
|
28
|
-
|
|
29
|
-
## <a name="contribute">❤️ Contribute</a>
|
|
30
|
-
We welcome and appreciate all contributions to Vercube! There are several ways you can help make this project better:
|
|
31
28
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
- **Join our community**: Have questions or want to discuss ideas? Join our [Discord server](https://discord.gg/safphS45aN)
|
|
35
|
-
- **Improve documentation**: Found something unclear or missing in the docs? Help us make them better!
|
|
36
|
-
- **Share feedback**: Your input helps shape Vercube's future. Let us know what features you'd like to see
|
|
37
|
-
|
|
38
|
-
Every contribution, no matter how small, makes a difference. We strive to review all contributions promptly and maintain a welcoming environment for all contributors.
|
|
29
|
+
## <a name="documentation">📖 Documentation</a>
|
|
30
|
+
Comprehensive documentation is available at [vercube.dev](https://vercube.dev). There you'll find detailed module descriptions, project information, guides, and everything else you need to know about Vercube.
|
package/dist/index.cjs
CHANGED
|
@@ -34,7 +34,7 @@ const nypm = __toESM(require("nypm"));
|
|
|
34
34
|
const tinyexec = __toESM(require("tinyexec"));
|
|
35
35
|
|
|
36
36
|
//#region packages/cli/package.json
|
|
37
|
-
var version = "0.0.1-beta.
|
|
37
|
+
var version = "0.0.1-beta.2";
|
|
38
38
|
|
|
39
39
|
//#endregion
|
|
40
40
|
//#region packages/cli/src/commands/build.ts
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercube/cli",
|
|
3
|
-
"version": "0.0.1-beta.
|
|
3
|
+
"version": "0.0.1-beta.3",
|
|
4
4
|
"description": "CLI module for Vercube framework",
|
|
5
5
|
"repository": "@vercube/cli",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"module": "./dist/index.mjs",
|
|
18
18
|
"types": "./dist/index.d.ts",
|
|
19
19
|
"files": [
|
|
20
|
-
"dist"
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md"
|
|
21
22
|
],
|
|
22
23
|
"bin": {
|
|
23
24
|
"vercube": "./dist/index.cjs"
|
|
@@ -30,7 +31,7 @@
|
|
|
30
31
|
"pathe": "2.0.3",
|
|
31
32
|
"std-env": "3.9.0",
|
|
32
33
|
"tinyexec": "1.0.1",
|
|
33
|
-
"@vercube/devkit": "0.0.1-beta.
|
|
34
|
+
"@vercube/devkit": "0.0.1-beta.3"
|
|
34
35
|
},
|
|
35
36
|
"publishConfig": {
|
|
36
37
|
"access": "public"
|