@valbuild/cli 0.87.5 → 0.88.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.
Files changed (2) hide show
  1. package/README.md +12 -0
  2. package/package.json +5 -6
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # @valbuild/cli
2
+
3
+ CLI tools for Val projects including validation, development server, and project initialization.
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ npx @valbuild/cli val validate --fix # Validate Val content files
9
+ npx @valbuild/cli val connect # Not required: connect to project in Cloud (requires sign in)
10
+ ```
11
+
12
+ See the [documentation](https://val.build/docs) for more information.
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@valbuild/cli",
3
3
  "private": false,
4
- "version": "0.87.5",
4
+ "version": "0.88.0",
5
5
  "description": "Val CLI tools",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "https://github.com/valbuild/val.git"
8
+ "url": "git+https://github.com/valbuild/val.git"
9
9
  },
10
10
  "bin": {
11
11
  "val": "./bin.js"
@@ -22,12 +22,11 @@
22
22
  "typecheck": "tsc --noEmit"
23
23
  },
24
24
  "dependencies": {
25
- "@valbuild/core": "~0.87.5",
26
- "@valbuild/eslint-plugin": "~0.87.5",
27
- "@valbuild/server": "~0.87.5",
25
+ "@valbuild/core": "~0.88.0",
26
+ "@valbuild/eslint-plugin": "~0.88.0",
27
+ "@valbuild/server": "~0.88.0",
28
28
  "chalk": "^4.1.2",
29
29
  "cors": "^2.8.5",
30
- "express": "^4.18.2",
31
30
  "fast-glob": "^3.3.1",
32
31
  "meow": "^9.0.0",
33
32
  "open": "^9.1.0",