@cortexlabs/forge 0.1.0-alpha.1 → 0.1.0-alpha.2

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 +10 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,20 +4,23 @@ Forge is a local engineering terminal backed by the Forge platform.
4
4
 
5
5
  ## Install
6
6
 
7
- The package is not public until the release checklist passes. For a packed local build:
7
+ Forge requires Node.js 20 or newer. Install the current prerelease globally:
8
8
 
9
9
  ```bash
10
- npm install
11
- npm test
12
- npm pack
13
- npm install -g ./cortexlabs-forge-0.1.0-alpha.1.tgz
10
+ npm install -g @cortexlabs/forge@next
11
+ ```
12
+
13
+ Verify the installation:
14
+
15
+ ```bash
16
+ forge --help
14
17
  forge doctor
15
18
  ```
16
19
 
17
- After publication:
20
+ You can also run Forge without installing it globally:
18
21
 
19
22
  ```bash
20
- npm install -g @cortexlabs/forge
23
+ npx @cortexlabs/forge@next --help
21
24
  ```
22
25
 
23
26
  ## Start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cortexlabs/forge",
3
- "version": "0.1.0-alpha.1",
3
+ "version": "0.1.0-alpha.2",
4
4
  "description": "Forge CLI - a trustworthy AI engineering terminal",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",