Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Created by
brew bump
Created with
brew bump-formula-pr
.release notes
that deno/node/bun are now a higher priority than javascript/typescript, and stack is the lowest
priority. This should only affect users with very complex inheritance chains.
🚀 Updates
supporting WASM based toolchain plugins. Going forward, any reference to platform is now a
toolchain. The following changes have been made:
platform
setting inmoon.yml
, usetoolchain.default
instead.language
setting and anyconfig files in the project/workspace root. This pattern is preferred when possible.
platform
task setting, usetoolchain
instead.taskPlatform
query field, usetaskToolchain
instead.--platform
option formoon query tasks
, use--toolchain
instead.$taskPlatform
token, use$taskToolchain
instead.moon run
andmoon ci
using a glob-like syntax.:build-*
,app-*:build
,#tag-{foo,bar}:build
, etc.--no-bail
flag tomoon run
, that will continue running tasks even when a task fails.glob://
) togenerator.templates
in.moon/workspace.yml
, allowing youto glob for your codegen template locations.
inferInputs
, that will automatically infer inputs based on file groups andsubstituted environment variables used within the task.
runInCI
to support the values "always" (always run) and "affected" (only runif affected, same as
true
).task's
script
,command
,args
, orenv
.extends
setting in.moon/workspace.yml
,toolchain.yml
, andtasks.yml
, tosupport a list of files/URLs to extend.
unstable_remote.cache.compression
setting, which can be set tozstd
to enablezstandard compression on output blobs.
copies. Do note that symlinks require privileged access on Windows to function correctly.
moon templates
command:--filter
option to filter the templates list by ID.🐞 Fixes
ctrl+c
ing multiple persistent tasks would sometimes leave them running inthe background.
⚙️ Internal