@moonrepo/cli 1.18.0-nightly.202311262130 → 1.18.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 +42 -2
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -10,7 +10,44 @@
|
|
|
10
10
|
- More accurately monitors signals (ctrl+c) and shutdowns.
|
|
11
11
|
- Tasks can now be configured with a timeout.
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## 1.18.0
|
|
14
|
+
|
|
15
|
+
#### 🚀 Updates
|
|
16
|
+
|
|
17
|
+
- Rewrote toolchain based task running to use a path based approach.
|
|
18
|
+
- Instead of manually locating an executable, we now rely on `PATH` to locate the executable.
|
|
19
|
+
- Non-system tasks can now be wrapped in a shell using the `shell` option.
|
|
20
|
+
- This approach will now benefit from proto shims and binaries.
|
|
21
|
+
- We'll also download and install the `proto` binary if it does not exist.
|
|
22
|
+
- Reworked the `moon init` command.
|
|
23
|
+
- Will no longer scaffold the toolchain configuration by default.
|
|
24
|
+
- The tool to scaffold into a toolchain can be passed as an argument.
|
|
25
|
+
- The path to initialize in is now behined the `--to` option.
|
|
26
|
+
- Added support for the `bun` tool.
|
|
27
|
+
- Simplified the workflow overall.
|
|
28
|
+
- Updated `moon.yml` to support customizing the project name using the `id` field.
|
|
29
|
+
- Can be used to override the project name derived in `.moon/workspace.yml`.
|
|
30
|
+
- Added a `MOON_INSTALL_DIR` environment variable, to control where the `moon` binary is installed
|
|
31
|
+
to.
|
|
32
|
+
|
|
33
|
+
#### 🐞 Fixes
|
|
34
|
+
|
|
35
|
+
- Fixed `moon upgrade` failing when not ran in a moon workspace.
|
|
36
|
+
- Fixed `CODEOWNERS` being written with double trailing newlines.
|
|
37
|
+
|
|
38
|
+
#### 🧩 Plugins
|
|
39
|
+
|
|
40
|
+
- Updated `bun_plugin` to v0.6.
|
|
41
|
+
- Updated `node_plugin` and `node_depman_plugin` to v0.6.1.
|
|
42
|
+
- Updated `rust_plugin` to v0.5.
|
|
43
|
+
|
|
44
|
+
#### ⚙️ Internal
|
|
45
|
+
|
|
46
|
+
- Improved string allocation and performance for queries, task tokens, and process commands.
|
|
47
|
+
- Improved remote caching flow and handling.
|
|
48
|
+
- Updated proto to v0.25.
|
|
49
|
+
|
|
50
|
+
## 1.17.4
|
|
14
51
|
|
|
15
52
|
#### 🐞 Fixes
|
|
16
53
|
|
|
@@ -18,10 +55,13 @@
|
|
|
18
55
|
on Windows.
|
|
19
56
|
- Fixed `typescript.includeProjectReferenceSources` and `typescript.syncProjectReferencesToPaths`
|
|
20
57
|
settings not including project references that were manually added (not auto-synced).
|
|
58
|
+
- Fixed the "a project already exists with alias" warnings when using Bun and Node together.
|
|
21
59
|
|
|
22
60
|
#### ⚙️ Internal
|
|
23
61
|
|
|
24
|
-
-
|
|
62
|
+
- Added canary release support.
|
|
63
|
+
- Enabled wasmtime caching, which should improve performance of WASM plugins by 10-20%.
|
|
64
|
+
- Updated proto to v0.23.7.
|
|
25
65
|
|
|
26
66
|
## 1.17.3
|
|
27
67
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonrepo/cli",
|
|
3
|
-
"version": "1.18.0
|
|
3
|
+
"version": "1.18.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.2"
|
|
30
30
|
},
|
|
31
31
|
"optionalDependencies": {
|
|
32
|
-
"@moonrepo/core-linux-arm64-gnu": "1.18.0
|
|
33
|
-
"@moonrepo/core-linux-arm64-musl": "1.18.0
|
|
34
|
-
"@moonrepo/core-linux-x64-gnu": "1.18.0
|
|
35
|
-
"@moonrepo/core-linux-x64-musl": "1.18.0
|
|
36
|
-
"@moonrepo/core-macos-arm64": "1.18.0
|
|
37
|
-
"@moonrepo/core-macos-x64": "1.18.0
|
|
38
|
-
"@moonrepo/core-windows-x64-msvc": "1.18.0
|
|
32
|
+
"@moonrepo/core-linux-arm64-gnu": "^1.18.0",
|
|
33
|
+
"@moonrepo/core-linux-arm64-musl": "^1.18.0",
|
|
34
|
+
"@moonrepo/core-linux-x64-gnu": "^1.18.0",
|
|
35
|
+
"@moonrepo/core-linux-x64-musl": "^1.18.0",
|
|
36
|
+
"@moonrepo/core-macos-arm64": "^1.18.0",
|
|
37
|
+
"@moonrepo/core-macos-x64": "^1.18.0",
|
|
38
|
+
"@moonrepo/core-windows-x64-msvc": "^1.18.0"
|
|
39
39
|
}
|
|
40
40
|
}
|