@moonrepo/cli 0.0.8 → 0.0.9

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 (3) hide show
  1. package/README.md +3 -4
  2. package/moon +0 -0
  3. package/package.json +5 -5
package/README.md CHANGED
@@ -15,12 +15,11 @@ JavaScript ecosystem, written in Rust!
15
15
  moon can be installed with npm, pnpm, or yarn.
16
16
 
17
17
  ```bash
18
- # Install the dependency and create the binary
18
+ # Install the dependency
19
19
  yarn add --dev @moonrepo/cli
20
- yarn install
21
20
 
22
- # Access the Rust binary and initialize moon
23
- $(yarn bin moon) init
21
+ # Initialize moon in the repo
22
+ npx @moonrepo/cli init
24
23
  ```
25
24
 
26
25
  ## Usage
package/moon CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "moon command line and core system.",
5
5
  "keywords": [
6
6
  "moon",
@@ -37,9 +37,9 @@
37
37
  "detect-libc": "^2.0.1"
38
38
  },
39
39
  "optionalDependencies": {
40
- "@moonrepo/core-linux-x64-gnu": "^0.0.8",
41
- "@moonrepo/core-linux-x64-musl": "^0.0.7",
42
- "@moonrepo/core-macos-x64": "^0.0.8",
43
- "@moonrepo/core-windows-x64-msvc": "^0.0.8"
40
+ "@moonrepo/core-linux-x64-gnu": "^0.0.9",
41
+ "@moonrepo/core-linux-x64-musl": "^0.0.8",
42
+ "@moonrepo/core-macos-x64": "^0.0.9",
43
+ "@moonrepo/core-windows-x64-msvc": "^0.0.9"
44
44
  }
45
45
  }