@vexblocks/cli 1.0.0 → 1.0.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 +7 -7
- package/dist/index.js +603 -607
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ pnpm dev
|
|
|
35
35
|
|
|
36
36
|
## Commands
|
|
37
37
|
|
|
38
|
-
###
|
|
38
|
+
### `@vexblocks/cli init`
|
|
39
39
|
|
|
40
40
|
Initialize a new VexBlocks project or add VexBlocks to an existing Turborepo.
|
|
41
41
|
|
|
@@ -44,7 +44,7 @@ npx @vexblocks/cli init
|
|
|
44
44
|
npx @vexblocks/cli init --cwd ./my-project
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
-
###
|
|
47
|
+
### `@vexblocks/cli add`
|
|
48
48
|
|
|
49
49
|
Add VexBlocks packages to your project.
|
|
50
50
|
|
|
@@ -73,7 +73,7 @@ npx @vexblocks/cli add cms --overwrite
|
|
|
73
73
|
| `types` | TypeScript type generator | `packages/type-generator` |
|
|
74
74
|
| `all` | All packages | - |
|
|
75
75
|
|
|
76
|
-
###
|
|
76
|
+
### `@vexblocks/cli upgrade`
|
|
77
77
|
|
|
78
78
|
Upgrade VexBlocks packages to the latest version.
|
|
79
79
|
|
|
@@ -91,7 +91,7 @@ npx @vexblocks/cli upgrade cms
|
|
|
91
91
|
npx @vexblocks/cli upgrade --force
|
|
92
92
|
```
|
|
93
93
|
|
|
94
|
-
###
|
|
94
|
+
### `@vexblocks/cli diff`
|
|
95
95
|
|
|
96
96
|
Show differences between local files and the latest version.
|
|
97
97
|
|
|
@@ -102,7 +102,7 @@ npx @vexblocks/cli diff backend
|
|
|
102
102
|
|
|
103
103
|
## Project Structure
|
|
104
104
|
|
|
105
|
-
After running `vexblocks add all`, your project will have:
|
|
105
|
+
After running `npx @vexblocks/cli add all`, your project will have:
|
|
106
106
|
|
|
107
107
|
```
|
|
108
108
|
your-project/
|
|
@@ -190,9 +190,9 @@ export default defineSchema({
|
|
|
190
190
|
|
|
191
191
|
## Documentation
|
|
192
192
|
|
|
193
|
-
- [VexBlocks Documentation](https://vexblocks.
|
|
193
|
+
- [VexBlocks Documentation](https://vexblocks.com/docs)
|
|
194
194
|
- [CMS Usage Guide](./CMS_USAGE_GUIDE.md)
|
|
195
|
-
- [API Reference](https://vexblocks.
|
|
195
|
+
- [API Reference](https://vexblocks.com/docs/api)
|
|
196
196
|
|
|
197
197
|
## License
|
|
198
198
|
|