@moonrepo/cli
Advanced tools
Comparing version 0.7.0 to 0.8.0
# Changelog | ||
## 0.8.0 | ||
This release was largely focused on interoperability with the Node.js ecosystem, specifically | ||
`package.json` scripts. It's the first step in many steps, so stay tuned! | ||
#### 🚀 Updates | ||
- Added a special `noop` command for tasks. | ||
- Added a `moon migrate from-package-json` command for migrating `package.json` scripts to | ||
`project.yml` tasks. | ||
- Added a `moon sync` command for manually syncing all projects in the workspace to a healthy state. | ||
- Added a `node.inferTasksFromScripts` setting to `.moon/workspace.yml`, that will automatically | ||
infer tasks from `package.json` scripts (with caveats). | ||
- Added aliases for popular commands: | ||
- `moon r` -> `moon run` | ||
- `moon p` -> `moon project` | ||
- `moon pg` -> `moon project-graph` | ||
- `moon dg` -> `moon dep-graph` | ||
#### 🐞 Fixes | ||
- Fixed an issue where files being hashed with git were not being cached accordingly. | ||
#### ⚙️ Internal | ||
- Runfiles are no longer cleaned up when running tasks. | ||
- Reworked `package.json` and `tsconfig.json` handling to avoid race conditions. | ||
## 0.7.0 | ||
@@ -4,0 +32,0 @@ |
{ | ||
"name": "@moonrepo/cli", | ||
"version": "0.7.0", | ||
"version": "0.8.0", | ||
"description": "moon command line and core system.", | ||
@@ -32,8 +32,8 @@ "keywords": [ | ||
"optionalDependencies": { | ||
"@moonrepo/core-linux-x64-gnu": "^0.7.0", | ||
"@moonrepo/core-linux-x64-musl": "^0.7.0", | ||
"@moonrepo/core-macos-arm64": "^0.7.0", | ||
"@moonrepo/core-macos-x64": "^0.7.0", | ||
"@moonrepo/core-windows-x64-msvc": "^0.7.0" | ||
"@moonrepo/core-linux-x64-gnu": "^0.8.0", | ||
"@moonrepo/core-linux-x64-musl": "^0.8.0", | ||
"@moonrepo/core-macos-arm64": "^0.8.0", | ||
"@moonrepo/core-macos-x64": "^0.8.0", | ||
"@moonrepo/core-windows-x64-msvc": "^0.8.0" | ||
} | ||
} |
@@ -54,3 +54,3 @@ # @moonrepo/cli | ||
duplicating the same script into every package, or reverse-engineering which root scripts to use. | ||
With moon, all you need to know is the project ID, and a task ID. | ||
With moon, all you need to know is the project name, and a task name. | ||
- **Ensure correct versions** - Whether it's Node.js or npm, ensure the same version of each tool is | ||
@@ -57,0 +57,0 @@ the same across _every_ developer's environment. No more wasted hours of debugging. |
14250