@moonrepo/cli 0.14.0 → 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 CHANGED
@@ -1,5 +1,45 @@
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
+
34
+ ## 0.14.1
35
+
36
+ #### 🐞 Fixes
37
+
38
+ - Fixed an issue where alias warnings were logged while scanning the dependency graph.
39
+ - Windows:
40
+ - Updated `*.cmd` executions to run with PowerShell when available. This resolves issues around
41
+ file paths with special characters or spaces.
42
+
3
43
  ## 0.14.0
4
44
 
5
45
  #### 🎉 Release
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
- - **Project boundaries** - Enforces boundaries to eliminate cycles and reduce indirection.
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.14.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.14.0",
33
- "@moonrepo/core-linux-arm64-musl": "^0.14.0",
34
- "@moonrepo/core-linux-x64-gnu": "^0.14.0",
35
- "@moonrepo/core-linux-x64-musl": "^0.14.0",
36
- "@moonrepo/core-macos-arm64": "^0.14.0",
37
- "@moonrepo/core-macos-x64": "^0.14.0",
38
- "@moonrepo/core-windows-x64-msvc": "^0.14.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
  }
package/postinstall.js CHANGED
@@ -49,7 +49,7 @@ try {
49
49
  console.error(`Failed to find "${binary}" binary.`);
50
50
 
51
51
  if (!isMoonLocal) {
52
- process.exit(1);
52
+ // process.exit(1);
53
53
  }
54
54
  }
55
55