@open-pioneer/build-package-cli@2.1.0
github-actions
released this
28 Jun 09:23
·
20 commits
to main
since this release
Minor Changes
-
e4ae880: Switch to
type: module
-
e4ae880: Implement additional validations when importing modules from other packages.
- When importing modules from normal node packages,
build-package
will now check that the imported module actually exists. - When importing modules from another trails package in the same repository,
build-package
now verifies that the imported module is an actual entry point of that package (declared in thebuild.config.mjs
).
These validations are designed to errors where a package would run locally (in Vite's development mode)
but end up broken when published (see also open-pioneer/trails-core-packages#42). - When importing modules from normal node packages,
-
e4ae880: Introduce an option to configure the root directory (
-r
for the CLI,rootDirectory
for the JavaScript API).The root directory is used to detect which packages are local to the project.
The option defaults to the root of the current workspace (e.g. the PNPM workspace root), or, if that doesn't work, to the root of the current git repository.
However, it can also be configured manually.