@moonrepo/cli 1.18.5-nightly.202312190034 → 1.18.5
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 +11 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,12 +10,22 @@
|
|
|
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.5
|
|
14
|
+
|
|
15
|
+
#### 🚀 Updates
|
|
16
|
+
|
|
17
|
+
- Reworked duplicate project ID/alias detection to be more accurate. Will also now error instead of
|
|
18
|
+
warn when a duplicate is detected.
|
|
19
|
+
- For aliases, the error can be disabled with the new `experiments.strictProjectAliases` setting
|
|
20
|
+
in `.moon/workspace.yml`.
|
|
21
|
+
- For project IDs, the error can not be disabled, as conflicting IDs will cause issues with the
|
|
22
|
+
project graph.
|
|
14
23
|
|
|
15
24
|
#### 🐞 Fixes
|
|
16
25
|
|
|
17
26
|
- Fixed glob based project locating to not log warnings when a file is found and it starts with `.`
|
|
18
27
|
(ignore dotfiles).
|
|
28
|
+
- Fixed project aliases potentially overwriting a project with the same name.
|
|
19
29
|
|
|
20
30
|
## 1.18.4
|
|
21
31
|
|