@moonrepo/cli 0.13.0 → 0.14.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 +38 -1
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.14.1
4
+
5
+ #### 🐞 Fixes
6
+
7
+ - Fixed an issue where alias warnings were logged while scanning the dependency graph.
8
+ - Windows:
9
+ - Updated `*.cmd` executions to run with PowerShell when available. This resolves issues around
10
+ file paths with special characters or spaces.
11
+
12
+ ## 0.14.0
13
+
14
+ #### 🎉 Release
15
+
16
+ - Released a new GitHub action,
17
+ [`moonrepo/run-report-action`](https://github.com/marketplace/actions/moon-ci-run-reports)!
18
+
19
+ #### 💥 Breaking
20
+
21
+ - Reworked how caching/hashing works when running in a Docker container/image. If the VCS root
22
+ cannot be found, we disable caching. This removes the requirement of mounting a `.git` volume for
23
+ Docker.
24
+
25
+ #### 🚀 Updates
26
+
27
+ - Added a new `moon generate` command, for code generation and scaffolding.
28
+ - Added a `generator` setting to `.moon/workspace.yml`, for controlling aspects of the generator and
29
+ its templates.
30
+ - Updated the project graph to scan and find implicit dependencies based on language specific
31
+ semantics. For example, will determine moon project relationships based on `package.json` names
32
+ and dependencies.
33
+ - Updated `moon setup` to also install Node.js dependencies.
34
+
35
+ #### 🐞 Fixes
36
+
37
+ - Fixed an issue where project and task names were not being cleaned/formatted properly.
38
+
3
39
  ## 0.13.0
4
40
 
5
41
  #### 💥 Breaking
@@ -43,7 +79,8 @@
43
79
 
44
80
  - Added support for Linux ARM GNU (`aarch64-unknown-linux-gnu`).
45
81
  - Added support for Linux ARM musl (`aarch64-unknown-linux-musl`).
46
- - Added a `typescript` setting to `moon.yml`, allowing TypeScript support to be toggled per project.
82
+ - Added a `workspace.typescript` setting to `moon.yml`, allowing TypeScript support to be toggled
83
+ per project.
47
84
  - Added a `--report` option to the `moon run` command, for generating run reports for debugging.
48
85
  - Added an `--affected` option to the `moon query projects` command.
49
86
  - Updated the task `command` to also support inline arguments. You can now merge `command` and
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "0.13.0",
3
+ "version": "0.14.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.13.0",
33
- "@moonrepo/core-linux-arm64-musl": "^0.13.0",
34
- "@moonrepo/core-linux-x64-gnu": "^0.13.0",
35
- "@moonrepo/core-linux-x64-musl": "^0.13.0",
36
- "@moonrepo/core-macos-arm64": "^0.13.0",
37
- "@moonrepo/core-macos-x64": "^0.13.0",
38
- "@moonrepo/core-windows-x64-msvc": "^0.13.0"
32
+ "@moonrepo/core-linux-arm64-gnu": "^0.14.1",
33
+ "@moonrepo/core-linux-arm64-musl": "^0.14.1",
34
+ "@moonrepo/core-linux-x64-gnu": "^0.14.1",
35
+ "@moonrepo/core-linux-x64-musl": "^0.14.1",
36
+ "@moonrepo/core-macos-arm64": "^0.14.1",
37
+ "@moonrepo/core-macos-x64": "^0.14.1",
38
+ "@moonrepo/core-windows-x64-msvc": "^0.14.1"
39
39
  }
40
40
  }