@moonrepo/cli 0.2.2 → 0.3.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 +20 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
#### 💥 Breaking
|
|
6
|
+
|
|
7
|
+
- Moved the `project.type` setting in `project.yml` to the top-level. Is now simply `type`.
|
|
8
|
+
|
|
9
|
+
#### 🚀 Updates
|
|
10
|
+
|
|
11
|
+
- Added support for a list of globs when configuring the `projects` setting in
|
|
12
|
+
`.moon/workspace.yml`.
|
|
13
|
+
- Added a `actionRunner.inheritColorsForPipedTasks` setting to `.moon/workspace.yml` for inheriting
|
|
14
|
+
terminal colors for piped tasks.
|
|
15
|
+
- Added a `language` setting to `project.yml` for defining the primary programming language of a
|
|
16
|
+
project.
|
|
17
|
+
- Added a global `--color` option to the CLI. Also supports a new `MOON_COLOR` environment variable.
|
|
18
|
+
|
|
19
|
+
#### 🐞 Fixes
|
|
20
|
+
|
|
21
|
+
- Fixed many issues around terminal color output and handling.
|
|
22
|
+
|
|
3
23
|
## 0.2.0
|
|
4
24
|
|
|
5
25
|
#### 🚀 Updates
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonrepo/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "moon command line and core system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"moon",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"detect-libc": "^2.0.1"
|
|
30
30
|
},
|
|
31
31
|
"optionalDependencies": {
|
|
32
|
-
"@moonrepo/core-linux-x64-gnu": "^0.
|
|
33
|
-
"@moonrepo/core-linux-x64-musl": "^0.
|
|
34
|
-
"@moonrepo/core-macos-arm64": "^0.
|
|
35
|
-
"@moonrepo/core-macos-x64": "^0.
|
|
36
|
-
"@moonrepo/core-windows-x64-msvc": "^0.
|
|
32
|
+
"@moonrepo/core-linux-x64-gnu": "^0.3.0",
|
|
33
|
+
"@moonrepo/core-linux-x64-musl": "^0.3.0",
|
|
34
|
+
"@moonrepo/core-macos-arm64": "^0.3.0",
|
|
35
|
+
"@moonrepo/core-macos-x64": "^0.3.0",
|
|
36
|
+
"@moonrepo/core-windows-x64-msvc": "^0.3.0"
|
|
37
37
|
}
|
|
38
38
|
}
|