@moonrepo/cli
Advanced tools
Comparing version 0.12.1 to 0.13.0
# Changelog | ||
## 0.13.0 | ||
#### 💥 Breaking | ||
- The `node` setting in `.moon/workspace.yml` is now optional, allowing repos to opt-out of Node.js | ||
support (in preparation for future languages support). This shouldn't affect you if the setting is | ||
already explicitly defined. | ||
- Renamed `actionRunner` setting to `runner` in `.moon/workspace.yml`. | ||
#### 🚀 Updates | ||
- Added a new `moon check` command, for running all build/test tasks for a project(s). | ||
- Added a `hasher` setting to `.moon/workspace.yml`, for controlling aspects of smart hashing. | ||
- Updated hashing to utilize the resolved version from the lockfile when applicable. | ||
- Updated the action runner to fail when an output is defined and the output does not exist after | ||
being ran. | ||
- Released a new `@moonrepo/types` npm package. | ||
#### ⚙️ Internal | ||
- The `SetupToolchain` action has been updated to be language/platform aware, and as such, was split | ||
into `SetupNodeToolchain` and `SetupSystemToolchain`. | ||
- Output is now buffered when running a target. This should reduce tearing and increase performance. | ||
- Upgraded all Cargo dependencies. | ||
## 0.12.1 | ||
@@ -4,0 +29,0 @@ |
{ | ||
"name": "@moonrepo/cli", | ||
"version": "0.12.1", | ||
"version": "0.13.0", | ||
"description": "moon command line and core system.", | ||
@@ -32,10 +32,10 @@ "keywords": [ | ||
"optionalDependencies": { | ||
"@moonrepo/core-linux-arm64-gnu": "^0.12.1", | ||
"@moonrepo/core-linux-arm64-musl": "^0.12.1", | ||
"@moonrepo/core-linux-x64-gnu": "^0.12.1", | ||
"@moonrepo/core-linux-x64-musl": "^0.12.1", | ||
"@moonrepo/core-macos-arm64": "^0.12.1", | ||
"@moonrepo/core-macos-x64": "^0.12.1", | ||
"@moonrepo/core-windows-x64-msvc": "^0.12.1" | ||
"@moonrepo/core-linux-arm64-gnu": "^0.13.0", | ||
"@moonrepo/core-linux-arm64-musl": "^0.13.0", | ||
"@moonrepo/core-linux-x64-gnu": "^0.13.0", | ||
"@moonrepo/core-linux-x64-musl": "^0.13.0", | ||
"@moonrepo/core-macos-arm64": "^0.13.0", | ||
"@moonrepo/core-macos-x64": "^0.13.0", | ||
"@moonrepo/core-windows-x64-msvc": "^0.13.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21366