@moonrepo/cli 0.22.0 → 0.23.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 +37 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
#### 0.23.1
|
|
4
|
+
|
|
5
|
+
#### 🐞 Fixes
|
|
6
|
+
|
|
7
|
+
- Fixed an issue where scoped tasks were not being inherited for projects that relied on language
|
|
8
|
+
detection.
|
|
9
|
+
|
|
10
|
+
#### 0.23.0
|
|
11
|
+
|
|
12
|
+
#### 💥 Breaking
|
|
13
|
+
|
|
14
|
+
- Renamed `.moon/project.yml` to `.moon/tasks.yml`.
|
|
15
|
+
- Moved `runner.implicitDeps` from `.moon/workspace.yml` to `.moon/tasks.yml` as `implicitDeps`.
|
|
16
|
+
- Moved `runner.implicitInputs` from `.moon/workspace.yml` to `.moon/tasks.yml` as `implicitInputs`.
|
|
17
|
+
|
|
18
|
+
#### 🚀 Updates
|
|
19
|
+
|
|
20
|
+
- We've improved our task inheritance model to support scoped inheritance based on a project's
|
|
21
|
+
`language` and `type`.
|
|
22
|
+
- Now supports `.moon/tasks/<language>.yml` and `.moon/tasks/<language>-<type>.yml` configuration
|
|
23
|
+
files.
|
|
24
|
+
- Added a top-level `env` setting to `moon.yml`.
|
|
25
|
+
- Updated task `outputs` to support globs.
|
|
26
|
+
- Updated `moon migrate from-turborepo` to preserve globs in outputs.
|
|
27
|
+
- Updated project graph to no longer cache when there's no VCS root.
|
|
28
|
+
- Updated pnpm to use the new `pnpm dedupe` command when the version is >= 7.26.0.
|
|
29
|
+
|
|
30
|
+
#### 🐞 Fixes
|
|
31
|
+
|
|
32
|
+
- Fixed an issue where directories in task `inputs` not using `**/*` would crash git.
|
|
33
|
+
- Fixed an issue where the project graph cache was not always resetting based on changes.
|
|
34
|
+
- Fixed an issue where run report action durations were innacurate.
|
|
35
|
+
|
|
36
|
+
#### ⚙️ Internal
|
|
37
|
+
|
|
38
|
+
- Updated our internal hasher to also take into account untracked files when hashing a directory.
|
|
39
|
+
|
|
3
40
|
#### 0.22.0
|
|
4
41
|
|
|
5
42
|
#### 💥 Breaking
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonrepo/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.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.
|
|
33
|
-
"@moonrepo/core-linux-arm64-musl": "^0.
|
|
34
|
-
"@moonrepo/core-linux-x64-gnu": "^0.
|
|
35
|
-
"@moonrepo/core-linux-x64-musl": "^0.
|
|
36
|
-
"@moonrepo/core-macos-arm64": "^0.
|
|
37
|
-
"@moonrepo/core-macos-x64": "^0.
|
|
38
|
-
"@moonrepo/core-windows-x64-msvc": "^0.
|
|
32
|
+
"@moonrepo/core-linux-arm64-gnu": "^0.23.1",
|
|
33
|
+
"@moonrepo/core-linux-arm64-musl": "^0.23.1",
|
|
34
|
+
"@moonrepo/core-linux-x64-gnu": "^0.23.1",
|
|
35
|
+
"@moonrepo/core-linux-x64-musl": "^0.23.1",
|
|
36
|
+
"@moonrepo/core-macos-arm64": "^0.23.1",
|
|
37
|
+
"@moonrepo/core-macos-x64": "^0.23.1",
|
|
38
|
+
"@moonrepo/core-windows-x64-msvc": "^0.23.1"
|
|
39
39
|
}
|
|
40
40
|
}
|