You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**What's the problem this PR addresses?**
<!-- Describe the rationale of your PR. -->
<!-- Link all issues that it closes. (Closes/Resolves #xxxx.) -->
resolves#6211
...
**How did you fix it?**
- added a boolean CLI switch to `builder build {bundle,plugin}` called
`--metafile`, defaults to `false`
- if CLI switch
- is `false`, then the `esbuild` in instructed to NOT emit `metafile`
- is `true`, then ...
- the `esbuild` in instructed to emit `metafile`
- the `metafile` data is written to target file
`bundles/${name}.meta.json`
- the target file is announced in the summary
example ourput:
```shellSession
$ builder build plugin --metafile
➤ YN0000: ┌ Building @yarnpkg/plugin-cyclonedx
➤ YN0000: └ Completed in 8s 619ms
➤ YN0000: ✓ Done building @yarnpkg/plugin-cyclonedx!
➤ YN0000: ? Bundle path:
/.../cyclonedx-node-yarn/bundles/@yarnpkg/plugin-cyclonedx.js
➤ YN0000: ? Bundle size: 771.52 KiB
➤ YN0000: ? Bundle meta:
/.../cyclonedx-node-yarn/bundles/@yarnpkg/plugin-cyclonedx.meta.json
```
<!-- A detailed description of your implementation. -->
...
**Checklist**
<!--- Don't worry if you miss something, chores are automatically
tested. -->
<!--- This checklist exists to help you remember doing the chores when
you submit a PR. -->
<!--- Put an `x` in all the boxes that apply. -->
- [x] I have read the [Contributing
Guide](https://yarnpkg.com/advanced/contributing).
<!-- See
https://yarnpkg.com/advanced/contributing#preparing-your-pr-to-be-released
for more details. -->
<!-- Check with `yarn version check` and fix with `yarn version check
-i` -->
- [x] I have set the packages that need to be released for my changes to
be effective.
<!-- The "Testing chores" workflow validates that your PR follows our
guidelines. -->
<!-- If it doesn't pass, click on it to see details as to what your PR
might be missing. -->
- [x] I will check that all automated PR checks pass before the PR gets
reviewed.
---------
Signed-off-by: Jan Kowalleck <[email protected]>
Co-authored-by: merceyz <[email protected]>
0 commit comments