@moonrepo/cli 0.10.0 → 0.12.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 +55 -0
- package/package.json +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,56 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.12.0
|
|
4
|
+
|
|
5
|
+
#### 💥 Breaking
|
|
6
|
+
|
|
7
|
+
- The `typescript` setting in `.moon/workspace.yml` is now optional, allowing repos to opt-out of
|
|
8
|
+
TypeScript support. This shouldn't affect you if the setting is already explicitly defined.
|
|
9
|
+
|
|
10
|
+
#### 🚀 Updates
|
|
11
|
+
|
|
12
|
+
- Added support for Linux ARM GNU (`aarch64-unknown-linux-gnu`).
|
|
13
|
+
- Added support for Linux ARM musl (`aarch64-unknown-linux-musl`).
|
|
14
|
+
- Added a `typescript` setting to `moon.yml`, allowing TypeScript support to be toggled per project.
|
|
15
|
+
- Added a `--report` option to the `moon run` command, for generating run reports for debugging.
|
|
16
|
+
- Added an `--affected` option to the `moon query projects` command.
|
|
17
|
+
- Updated the task `command` to also support inline arguments. You can now merge `command` and
|
|
18
|
+
`args` into a single field.
|
|
19
|
+
|
|
20
|
+
## 0.11.1
|
|
21
|
+
|
|
22
|
+
#### 🐞 Fixes
|
|
23
|
+
|
|
24
|
+
- Fixed an issue where `system` tasks were hashing incorrect contents.
|
|
25
|
+
- Fixed an issue where `envFile` is enabled and the relevant `.env` file may not exist in CI.
|
|
26
|
+
|
|
27
|
+
## 0.11.0
|
|
28
|
+
|
|
29
|
+
#### 🚀 Updates
|
|
30
|
+
|
|
31
|
+
- Added a `moon clean` command for manually clearing the cache.
|
|
32
|
+
- Added an `actionRunner.cacheLifetime` setting to `.moon/workspace.yml`, for controlling the stale
|
|
33
|
+
cache threshold.
|
|
34
|
+
- Added an `envFile` option to tasks, allowing `.env` files to be loaded for environment variables.
|
|
35
|
+
- Added a `local` setting to tasks, that marks the task for local development only.
|
|
36
|
+
- Updated the `outputStyle` task option with additional variants: `buffer`, `buffer-only-failure`,
|
|
37
|
+
`hash`, `none`.
|
|
38
|
+
- Updated `moon run` to support running multiple targets concurrently.
|
|
39
|
+
|
|
40
|
+
#### 🐞 Fixes
|
|
41
|
+
|
|
42
|
+
- Fixed an issue where output hydration was bypassing "off" cache.
|
|
43
|
+
- Fixed an issue where parsing a node module binary would panic.
|
|
44
|
+
- Fixed an issue where moon would panic attempting to read non-JS code shipped in node modules (Rust
|
|
45
|
+
or Go binaries).
|
|
46
|
+
- Fixed an issue where project globs would pickup dot folders (`.git`, `.moon`, etc) or
|
|
47
|
+
`node_modules`.
|
|
48
|
+
- Fixed an issue where project names were stripping capital letters when using globs.
|
|
49
|
+
|
|
50
|
+
#### ⚙️ Internal
|
|
51
|
+
|
|
52
|
+
- Updated Rust to v1.63.
|
|
53
|
+
|
|
3
54
|
## 0.10.0
|
|
4
55
|
|
|
5
56
|
#### 💥 Breaking
|
|
@@ -203,6 +254,10 @@ This release was largely focused on interoperability with the Node.js ecosystem,
|
|
|
203
254
|
|
|
204
255
|
- More fixes around terminal color output and handling.
|
|
205
256
|
|
|
257
|
+
#### 📚 Documentation
|
|
258
|
+
|
|
259
|
+
- Add "released in version" badges/labels to new features across all docs.
|
|
260
|
+
|
|
206
261
|
#### ⚙️ Internal
|
|
207
262
|
|
|
208
263
|
- Temporarily disabling offline internet checks as it has issues with VPNs. Will revisit in the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonrepo/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "moon command line and core system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"moon",
|
|
@@ -29,10 +29,12 @@
|
|
|
29
29
|
"detect-libc": "^2.0.1"
|
|
30
30
|
},
|
|
31
31
|
"optionalDependencies": {
|
|
32
|
-
"@moonrepo/core-linux-
|
|
33
|
-
"@moonrepo/core-linux-
|
|
34
|
-
"@moonrepo/core-
|
|
35
|
-
"@moonrepo/core-
|
|
36
|
-
"@moonrepo/core-
|
|
32
|
+
"@moonrepo/core-linux-arm64-gnu": "^0.12.0",
|
|
33
|
+
"@moonrepo/core-linux-arm64-musl": "^0.12.0",
|
|
34
|
+
"@moonrepo/core-linux-x64-gnu": "^0.12.0",
|
|
35
|
+
"@moonrepo/core-linux-x64-musl": "^0.12.0",
|
|
36
|
+
"@moonrepo/core-macos-arm64": "^0.12.0",
|
|
37
|
+
"@moonrepo/core-macos-x64": "^0.12.0",
|
|
38
|
+
"@moonrepo/core-windows-x64-msvc": "^0.12.0"
|
|
37
39
|
}
|
|
38
40
|
}
|