@moonrepo/cli
Advanced tools
Comparing version 0.10.0 to 0.11.0
# Changelog | ||
## 0.11.0 | ||
#### 🚀 Updates | ||
- Added a `moon clean` command for manually clearing the cache. | ||
- Added an `actionRunner.cacheLifetime` setting to `.moon/workspace.yml`, for controlling the stale | ||
cache threshold. | ||
- Added an `envFile` option to tasks, allowing `.env` files to be loaded for environment variables. | ||
- Added a `local` setting to tasks, that marks the task for local development only. | ||
- Updated the `outputStyle` task option with additional variants: `buffer`, `buffer-only-failure`, | ||
`hash`, `none`. | ||
- Updated `moon run` to support running multiple targets concurrently. | ||
#### 🐞 Fixes | ||
- Fixed an issue where output hydration was bypassing "off" cache. | ||
- Fixed an issue where parsing a node module binary would panic. | ||
- Fixed an issue where moon would panic attempting to read non-JS code shipped in node modules (Rust | ||
or Go binaries). | ||
- Fixed an issue where project globs would pickup dot folders (`.git`, `.moon`, etc) or | ||
`node_modules`. | ||
- Fixed an issue where project names were stripping capital letters when using globs. | ||
#### ⚙️ Internal | ||
- Updated Rust to v1.63. | ||
## 0.10.0 | ||
@@ -206,2 +233,6 @@ | ||
#### 📚 Documentation | ||
- Add "released in version" badges/labels to new features across all docs. | ||
#### ⚙️ Internal | ||
@@ -208,0 +239,0 @@ |
{ | ||
"name": "@moonrepo/cli", | ||
"version": "0.10.0", | ||
"version": "0.11.0", | ||
"description": "moon command line and core system.", | ||
@@ -32,8 +32,8 @@ "keywords": [ | ||
"optionalDependencies": { | ||
"@moonrepo/core-linux-x64-gnu": "^0.10.0", | ||
"@moonrepo/core-linux-x64-musl": "^0.10.0", | ||
"@moonrepo/core-macos-arm64": "^0.10.0", | ||
"@moonrepo/core-macos-x64": "^0.10.0", | ||
"@moonrepo/core-windows-x64-msvc": "^0.10.0" | ||
"@moonrepo/core-linux-x64-gnu": "^0.11.0", | ||
"@moonrepo/core-linux-x64-musl": "^0.11.0", | ||
"@moonrepo/core-macos-arm64": "^0.11.0", | ||
"@moonrepo/core-macos-x64": "^0.11.0", | ||
"@moonrepo/core-windows-x64-msvc": "^0.11.0" | ||
} | ||
} |
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
19006