@moonrepo/cli 0.2.1 → 0.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/package.json +6 -19
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.1
4
+
5
+ #### 🐞 Fixes
6
+
7
+ - Fixed an issue where tasks referencing workspace relative files were not being marked as affected.
8
+ - Fixed some issues during `moon init` config generation.
9
+ - Improved offline checks by also verifying against Google's DNS.
10
+
11
+ ## 0.3.0
12
+
13
+ #### 💥 Breaking
14
+
15
+ - Moved the `project.type` setting in `project.yml` to the top-level. Is now simply `type`.
16
+
17
+ #### 🚀 Updates
18
+
19
+ - Added support for a list of globs when configuring the `projects` setting in
20
+ `.moon/workspace.yml`.
21
+ - Added a `actionRunner.inheritColorsForPipedTasks` setting to `.moon/workspace.yml` for inheriting
22
+ terminal colors for piped tasks.
23
+ - Added a `language` setting to `project.yml` for defining the primary programming language of a
24
+ project.
25
+ - Added a global `--color` option to the CLI. Also supports a new `MOON_COLOR` environment variable.
26
+
27
+ #### 🐞 Fixes
28
+
29
+ - Fixed many issues around terminal color output and handling.
30
+
3
31
  ## 0.2.0
4
32
 
5
33
  #### 🚀 Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "0.2.1",
3
+ "version": "0.3.1",
4
4
  "description": "moon command line and core system.",
5
5
  "keywords": [
6
6
  "moon",
@@ -8,19 +8,6 @@
8
8
  "cli",
9
9
  "core"
10
10
  ],
11
- "os": [
12
- "linux",
13
- "win32",
14
- "darwin"
15
- ],
16
- "cpu": [
17
- "arm64",
18
- "x64"
19
- ],
20
- "libc": [
21
- "glibc",
22
- "musl"
23
- ],
24
11
  "files": [
25
12
  "moon",
26
13
  "postinstall.js"
@@ -42,10 +29,10 @@
42
29
  "detect-libc": "^2.0.1"
43
30
  },
44
31
  "optionalDependencies": {
45
- "@moonrepo/core-linux-x64-gnu": "^0.2.1",
46
- "@moonrepo/core-linux-x64-musl": "^0.2.1",
47
- "@moonrepo/core-macos-arm64": "^0.2.1",
48
- "@moonrepo/core-macos-x64": "^0.2.1",
49
- "@moonrepo/core-windows-x64-msvc": "^0.2.1"
32
+ "@moonrepo/core-linux-x64-gnu": "^0.3.1",
33
+ "@moonrepo/core-linux-x64-musl": "^0.3.1",
34
+ "@moonrepo/core-macos-arm64": "^0.3.1",
35
+ "@moonrepo/core-macos-x64": "^0.3.1",
36
+ "@moonrepo/core-windows-x64-msvc": "^0.3.1"
50
37
  }
51
38
  }