@moonrepo/cli 0.17.0 → 0.18.1

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,49 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.18.1
4
+
5
+ #### 🚀 Updates
6
+
7
+ - Improved the resolution and hashing of `package.json` dependencies for Yarn and pnpm.
8
+
9
+ #### 🐞 Fixes
10
+
11
+ - Fixed an issue where caching would fail on missing `stdout.log` and `stderr.log` files.
12
+
13
+ ## 0.18.0
14
+
15
+ #### 🚀 Updates
16
+
17
+ - Refactored `moon init` heavily for a better onboarding experience.
18
+ - Each tool is now configured individually, with its own prompts. Tools can also be skipped.
19
+ - Tools can now be initialized _after_ moon already exists, ala `moon init --tool node`.
20
+ - Fixed many issues around the templates and rendering.
21
+ - Updated the `moon check` command to support an `--all` flag.
22
+ - Updated `moon migrate` commands to throw an error if the work tree is dirty. This can be bypassed
23
+ with the new `--skipTouchedFilesCheck` option.
24
+ - Updated the `projects` setting in `.moon/workspace.yml` to support globs _and_ a map in unison.
25
+ - Updated default versions of tools:
26
+ - node 16.17.0 -> 18.12.0
27
+ - pnpm 7.12.1 -> 7.14.0
28
+ - yarn 3.2.3 -> 3.2.4
29
+
30
+ ##### Runner
31
+
32
+ - Added a `node.binExecArgs` setting to `.moon/workspace.yml`, so that additional `node` CLI
33
+ arguments may be passed when executing the binary to run targets.
34
+ - Updated the task `command` to default to "noop" when not defined.
35
+ - The stdout and stderr of ran targets are now stored as individual log files in
36
+ `.moon/cache/states/<project>/<task>`. This allows CI environments to cache them as artifacts,
37
+ upload/download them, or simply help developers debug broken jobs.
38
+ - Also, these log files are now stored in the output tarballs.
39
+
40
+ #### ⚙️ Internal
41
+
42
+ - Timestamps have been updated to UTC _without timezone_.
43
+ - Implemented a benchmarking system to start capturing performance changes.
44
+ - Improved language and platform interoperability.
45
+ - Extended configurations will now be temporarily cached for 4 hours.
46
+
3
47
  ## 0.17.0
4
48
 
5
49
  #### 💥 Breaking
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # @moonrepo/cli
2
2
 
3
3
  The official CLI for [moon](https://moonrepo.dev), a build system and repo management tool for the
4
- JavaScript ecosystem, written in Rust!
4
+ web ecosystem, written in Rust! Supports JavaScript, TypeScript, Bash, and Batch.
5
5
 
6
6
  - [Documentation](https://moonrepo.dev/docs)
7
7
  - [Getting started](https://moonrepo.dev/docs/install)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "0.17.0",
3
+ "version": "0.18.1",
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.17.0",
33
- "@moonrepo/core-linux-arm64-musl": "^0.17.0",
34
- "@moonrepo/core-linux-x64-gnu": "^0.17.0",
35
- "@moonrepo/core-linux-x64-musl": "^0.17.0",
36
- "@moonrepo/core-macos-arm64": "^0.17.0",
37
- "@moonrepo/core-macos-x64": "^0.17.0",
38
- "@moonrepo/core-windows-x64-msvc": "^0.17.0"
32
+ "@moonrepo/core-linux-arm64-gnu": "^0.18.1",
33
+ "@moonrepo/core-linux-arm64-musl": "^0.18.1",
34
+ "@moonrepo/core-linux-x64-gnu": "^0.18.1",
35
+ "@moonrepo/core-linux-x64-musl": "^0.18.1",
36
+ "@moonrepo/core-macos-arm64": "^0.18.1",
37
+ "@moonrepo/core-macos-x64": "^0.18.1",
38
+ "@moonrepo/core-windows-x64-msvc": "^0.18.1"
39
39
  }
40
40
  }