@onreza/nrz 0.31.3 → 0.32.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.bak CHANGED
@@ -36,12 +36,18 @@ nrz login
36
36
  # 2) Create local scaffold and optionally link/create platform project
37
37
  nrz init
38
38
  # alternatives:
39
+ # nrz init --local
39
40
  # nrz init --create --name my-app
40
41
  # nrz init --project-id proj_abc123
41
42
 
42
43
  # 3) Detect framework and persist it to onreza.toml
43
44
  nrz detect --save
44
45
 
46
+ # Explain what build/deploy config the CLI will use
47
+ nrz config explain --json
48
+ # Local-only explanation without fetching server project settings:
49
+ # nrz config explain --local --json
50
+
45
51
  # 4) Local development with ONREZA emulation (KV + DB)
46
52
  nrz dev
47
53
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onreza/nrz",
3
- "version": "0.31.3",
3
+ "version": "0.32.0",
4
4
  "private": false,
5
5
  "description": "ONREZA platform CLI — dev, build, deploy",
6
6
  "files": [
@@ -13,13 +13,13 @@ const __dirname = dirname(__filename);
13
13
 
14
14
  const MANIFEST = {
15
15
  "assets": {
16
- "linux-x64": "https://github.com/ONREZA/nrz-cli/releases/download/v0.31.3/nrz-linux-x64.tar.gz",
17
- "darwin-x64": "https://github.com/ONREZA/nrz-cli/releases/download/v0.31.3/nrz-darwin-x64.tar.gz",
18
- "darwin-arm64": "https://github.com/ONREZA/nrz-cli/releases/download/v0.31.3/nrz-darwin-arm64.tar.gz",
19
- "win32-x64": "https://github.com/ONREZA/nrz-cli/releases/download/v0.31.3/nrz-win32-x64.tar.gz"
16
+ "linux-x64": "https://github.com/ONREZA/nrz-cli/releases/download/v0.32.0/nrz-linux-x64.tar.gz",
17
+ "darwin-x64": "https://github.com/ONREZA/nrz-cli/releases/download/v0.32.0/nrz-darwin-x64.tar.gz",
18
+ "darwin-arm64": "https://github.com/ONREZA/nrz-cli/releases/download/v0.32.0/nrz-darwin-arm64.tar.gz",
19
+ "win32-x64": "https://github.com/ONREZA/nrz-cli/releases/download/v0.32.0/nrz-win32-x64.tar.gz"
20
20
  },
21
21
  "binName": "nrz",
22
- "version": "0.31.3"
22
+ "version": "0.32.0"
23
23
  };
24
24
 
25
25
  const platformKey = `${platform}-${arch}`;