@frontstackdev/cli 0.0.0-canary-20251020110452 → 0.0.0-canary-20251020192236
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 +8 -9
- package/dist/version +1 -1
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ $ npx @frontstackdev/cli
|
|
|
17
17
|
|
|
18
18
|
Commands:
|
|
19
19
|
login Connect the CLI with you Frontstack account
|
|
20
|
-
logout Disconnect the CLI from your Frontstack account
|
|
20
|
+
logout Disconnect the CLI from your Frontstack account
|
|
21
21
|
info Show information about current project and user
|
|
22
22
|
project [options] Set current project
|
|
23
23
|
generate [options] Generate a JavaScript client for your project
|
|
24
|
-
|
|
24
|
+
|
|
25
25
|
help [command] display help for command
|
|
26
26
|
```
|
|
27
27
|
|
|
@@ -75,18 +75,17 @@ FRONTSTACK_CLI_DEV_MODE=1 pnpm frontstack login
|
|
|
75
75
|
|
|
76
76
|
There are two options to run the CLI in development mode:
|
|
77
77
|
|
|
78
|
-
|
|
79
78
|
1. Building the app and running the built file (recommended)
|
|
80
79
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
80
|
+
```bash
|
|
81
|
+
$ pnpm frontstack [command] // e.g. pnpm frontstack info
|
|
82
|
+
```
|
|
84
83
|
|
|
85
84
|
1. Run using [tsx](https://tsx.is/) (this will compile the typescript files on the fly)
|
|
86
85
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
86
|
+
```bash
|
|
87
|
+
$ pnpm start [command] // e.g. pnpm start info
|
|
88
|
+
```
|
|
90
89
|
|
|
91
90
|
### Build
|
|
92
91
|
|
package/dist/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.0-canary-
|
|
1
|
+
0.0.0-canary-20251020192236
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontstackdev/cli",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251020192236",
|
|
4
4
|
"description": "frontstack CLI for managing projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/frontstack.mjs",
|
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
"frontstack": "pnpm build && node dist/frontstack.mjs",
|
|
11
11
|
"test": "vitest",
|
|
12
12
|
"lint": "tsc",
|
|
13
|
+
"format:check": "npx prettier . --check",
|
|
14
|
+
"format": "npx prettier . --write",
|
|
13
15
|
"clean": "rm -rf dist"
|
|
14
16
|
},
|
|
15
17
|
"keywords": [],
|
|
@@ -30,6 +32,7 @@
|
|
|
30
32
|
"msw": "^2.2.14",
|
|
31
33
|
"ofetch": "^1.3.4",
|
|
32
34
|
"pkgroll": "^2.4.2",
|
|
35
|
+
"prettier": "^3.6.2",
|
|
33
36
|
"tsx": "^4.18.0",
|
|
34
37
|
"typescript": "^5.5.4",
|
|
35
38
|
"vitest": "^1.5.0"
|