@moonrepo/cli 1.24.1 → 1.25.0-canary.202404221745
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 +2 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
- Added an experimental `moon templates` command, that lists all available codegen templates.
|
|
25
25
|
- Added a `--dependents` flag to `moon project-graph <id>` and `moon query projects`, to include
|
|
26
26
|
downstream dependents of a focused/affected project.
|
|
27
|
+
- Added a `mutex` task option, allowing for exclusivity and to ensure only 1 task is running at a
|
|
28
|
+
time for the same mutex.
|
|
27
29
|
- Added a `runner.autoCleanCache` setting to `.moon/workspace.yml`, allowing the post-run clean
|
|
28
30
|
mechanism to be controlled.
|
|
29
31
|
- Updated `moon ci` to automatically determine base/head revisions based on your current CI provider
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonrepo/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0-canary.202404221745",
|
|
4
4
|
"description": "moon command line and core system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"moon",
|
|
@@ -26,15 +26,15 @@
|
|
|
26
26
|
"postinstall": "node ./postinstall.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"detect-libc": "^2.0.
|
|
29
|
+
"detect-libc": "^2.0.3"
|
|
30
30
|
},
|
|
31
31
|
"optionalDependencies": {
|
|
32
|
-
"@moonrepo/core-linux-arm64-gnu": "1.
|
|
33
|
-
"@moonrepo/core-linux-arm64-musl": "1.
|
|
34
|
-
"@moonrepo/core-linux-x64-gnu": "1.
|
|
35
|
-
"@moonrepo/core-linux-x64-musl": "1.
|
|
36
|
-
"@moonrepo/core-macos-arm64": "1.
|
|
37
|
-
"@moonrepo/core-macos-x64": "1.
|
|
38
|
-
"@moonrepo/core-windows-x64-msvc": "1.
|
|
32
|
+
"@moonrepo/core-linux-arm64-gnu": "1.25.0",
|
|
33
|
+
"@moonrepo/core-linux-arm64-musl": "1.25.0",
|
|
34
|
+
"@moonrepo/core-linux-x64-gnu": "1.25.0",
|
|
35
|
+
"@moonrepo/core-linux-x64-musl": "1.25.0",
|
|
36
|
+
"@moonrepo/core-macos-arm64": "1.25.0",
|
|
37
|
+
"@moonrepo/core-macos-x64": "1.25.0",
|
|
38
|
+
"@moonrepo/core-windows-x64-msvc": "1.25.0"
|
|
39
39
|
}
|
|
40
40
|
}
|