🚀 Updates
Projects
- Projects can now override the workspace configured Node.js version on a per-project basis using
the newworkspace.node.version
setting inmoon.yml
. However, this does not override the
package manager! - Package managers workspaces (via
package.json
) are no longer required. When not enabled, or a
project is not within the workspace, it will install dependencies directly within the project
root, and will utilize its own lockfile.
TypeScript
- Added a new
typescript.routeOutDirToCache
setting to.moon/workspace.yml
, that will update the
outDir
compiler option to route to.moon/cache/types
. - Added a new
typescript.syncProjectReferencesToPaths
setting to.moon/workspace.yml
, that will
map project references to compiler optionpaths
aliases.
Generator
- Template files can now be suffixed with
.tera
or.twig
for syntax highlighting.
Runner
- The running command will now be displayed when installing dependencies (npm install, etc). This
can be toggled with therunner.logRunningCommand
setting. - The dedupe command will now be displayed when running if the
node.dedupeOnLockfileChange
setting
is enabled. - Added a new
runner.implicitDeps
setting to.moon/workspace.yml
, that will add taskdeps
to
all tasks.
📚 Docs
- Config file settings will now link to their API types.
⚙️ Internal
- We've renamed and restructured the
.moon/cache
directory. If you were relying on any of these
files, you'll need to update your implementation. - Updated Cargo dependencies. A big change was clap v3 -> v4, so if you encounter any CLI issues,
please report.