Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@
'plugin: jsx-remove-attributes':
- changed-files:
- any-glob-to-any-file: 'packages/jsx-remove-attributes/**'

'package: oxc-unshadowed-visitor':
- changed-files:
- any-glob-to-any-file: 'packages/oxc-unshadowed-visitor/**'
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Official Rolldown plugins

### Other Packages

- [`oxc-unshadowed-visitor`](https://github.com/rolldown/plugins/tree/main/packages/oxc-unshadowed-visitor): scope-aware AST visitor that tracks references to specified names, filtering out those shadowed by local bindings
- [`oxc-unshadowed-visitor`](https://github.com/rolldown/plugins/tree/main/packages/oxc-unshadowed-visitor) ([![NPM version][badge-npm-version-oxc-unshadowed-visitor]][url-npm-oxc-unshadowed-visitor]): scope-aware AST visitor that tracks references to specified names, filtering out those shadowed by local bindings

## License

Expand All @@ -36,6 +36,8 @@ Official Rolldown plugins
[badge-npm-version-babel]: https://img.shields.io/npm/v/@rolldown/plugin-babel/latest?color=brightgreen
[badge-npm-version-emotion]: https://img.shields.io/npm/v/@rolldown/plugin-emotion/latest?color=brightgreen
[badge-npm-version-jsx-remove-attributes]: https://img.shields.io/npm/v/@rolldown/plugin-jsx-remove-attributes/latest?color=brightgreen
[badge-npm-version-oxc-unshadowed-visitor]: https://img.shields.io/npm/v/oxc-unshadowed-visitor/latest?color=brightgreen
[url-npm-babel]: https://npmx.dev/package/@rolldown/plugin-babel/v/latest
[url-npm-emotion]: https://npmx.dev/package/@rolldown/plugin-emotion/v/latest
[url-npm-jsx-remove-attributes]: https://npmx.dev/package/@rolldown/plugin-jsx-remove-attributes/v/latest
[url-npm-oxc-unshadowed-visitor]: https://npmx.dev/package/oxc-unshadowed-visitor/v/latest
Empty file.
7 changes: 6 additions & 1 deletion scripts/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ process.chdir(path.join(import.meta.dirname, '..'))

await release({
repo: 'rolldown/plugins',
packages: ['plugin-babel', 'plugin-emotion', 'plugin-jsx-remove-attributes'],
packages: [
'plugin-babel',
'plugin-emotion',
'plugin-jsx-remove-attributes',
'oxc-unshadowed-visitor',
],
toTag: (pkg, version) => `${pkg}@${version}`,
logChangelog: (pkg) => logRecentCommits(pkg, getPkgDir(pkg)),
getPkgDir,
Expand Down