@moonrepo/cli 0.14.1 → 0.15.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/CHANGELOG.md +31 -0
- package/README.md +1 -1
- package/package.json +8 -8
- package/postinstall.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.15.0
|
|
4
|
+
|
|
5
|
+
#### 🚀 Updates
|
|
6
|
+
|
|
7
|
+
- When running multiple targets in parallel, we've reworked the output prefix to be uniform amongst
|
|
8
|
+
all targets, and to be colored to uniquely identify each target.
|
|
9
|
+
- Added a new `moon docker scaffold` command for scaffolding a skeleton workspace for use within
|
|
10
|
+
`Dockerfile`s.
|
|
11
|
+
- Added a new `moon docker prune` command for pruning the Docker environment for a build/deply.
|
|
12
|
+
- Added frontmatter support to all template files.
|
|
13
|
+
- Added a `node.yarn.plugins` setting to `.moon/workspace.yml`.
|
|
14
|
+
- Updated run reports (via `--report`) to include additional information, like the total duration,
|
|
15
|
+
and estimated time savings.
|
|
16
|
+
- Updated default versions of tools:
|
|
17
|
+
- node 16.16.0 -> 16.17.0
|
|
18
|
+
- npm 8.16.0 -> 8.19.2
|
|
19
|
+
- pnpm 7.9.0 -> 7.12.1
|
|
20
|
+
- yarn 3.2.2 -> 3.2.3
|
|
21
|
+
|
|
22
|
+
#### 🐞 Fixes
|
|
23
|
+
|
|
24
|
+
- Added missing `.npmrc` to the list of pnpm config files.
|
|
25
|
+
- Improved the handling of Rust/Go binaries shipped in pnpm node modules.
|
|
26
|
+
|
|
27
|
+
#### ⚙️ Internal
|
|
28
|
+
|
|
29
|
+
- Updated Rust to v1.64.
|
|
30
|
+
- Windows:
|
|
31
|
+
- Will always use PowerShell and avoids `cmd.exe` entirely.
|
|
32
|
+
- Reworked commands that run through PowerShell to pass arguments via stdin.
|
|
33
|
+
|
|
3
34
|
## 0.14.1
|
|
4
35
|
|
|
5
36
|
#### 🐞 Fixes
|
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ and provide a first-class developer experience.
|
|
|
74
74
|
#### Organization
|
|
75
75
|
|
|
76
76
|
- **Project graph** - Generates a project graph for dependency and dependent relationships.
|
|
77
|
-
- **
|
|
77
|
+
- **Code generation** - Easily scaffold new applications, libraries, tooling, and more!
|
|
78
78
|
- **Dependency workspaces** - Works alongside package manager workspaces so that projects have
|
|
79
79
|
distinct dependency trees.
|
|
80
80
|
- **Ownership metadata** - Declare an owner, maintainers, support channels, and more, for LDAP or
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonrepo/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "moon command line and core system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"moon",
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
"detect-libc": "^2.0.1"
|
|
30
30
|
},
|
|
31
31
|
"optionalDependencies": {
|
|
32
|
-
"@moonrepo/core-linux-arm64-gnu": "^0.
|
|
33
|
-
"@moonrepo/core-linux-arm64-musl": "^0.
|
|
34
|
-
"@moonrepo/core-linux-x64-gnu": "^0.
|
|
35
|
-
"@moonrepo/core-linux-x64-musl": "^0.
|
|
36
|
-
"@moonrepo/core-macos-arm64": "^0.
|
|
37
|
-
"@moonrepo/core-macos-x64": "^0.
|
|
38
|
-
"@moonrepo/core-windows-x64-msvc": "^0.
|
|
32
|
+
"@moonrepo/core-linux-arm64-gnu": "^0.15.0",
|
|
33
|
+
"@moonrepo/core-linux-arm64-musl": "^0.15.0",
|
|
34
|
+
"@moonrepo/core-linux-x64-gnu": "^0.15.0",
|
|
35
|
+
"@moonrepo/core-linux-x64-musl": "^0.15.0",
|
|
36
|
+
"@moonrepo/core-macos-arm64": "^0.15.0",
|
|
37
|
+
"@moonrepo/core-macos-x64": "^0.15.0",
|
|
38
|
+
"@moonrepo/core-windows-x64-msvc": "^0.15.0"
|
|
39
39
|
}
|
|
40
40
|
}
|