Skip to content

Commit a58b59c

Browse files
authored
chore(oxc-unshadowed-visitor): setup release flow (#44)
1 parent 67d7f6a commit a58b59c

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

.github/pr-labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@
99
'plugin: jsx-remove-attributes':
1010
- changed-files:
1111
- any-glob-to-any-file: 'packages/jsx-remove-attributes/**'
12+
13+
'package: oxc-unshadowed-visitor':
14+
- changed-files:
15+
- any-glob-to-any-file: 'packages/oxc-unshadowed-visitor/**'

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Official Rolldown plugins
2727

2828
### Other Packages
2929

30-
- [`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
30+
- [`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
3131

3232
## License
3333

@@ -36,6 +36,8 @@ Official Rolldown plugins
3636
[badge-npm-version-babel]: https://img.shields.io/npm/v/@rolldown/plugin-babel/latest?color=brightgreen
3737
[badge-npm-version-emotion]: https://img.shields.io/npm/v/@rolldown/plugin-emotion/latest?color=brightgreen
3838
[badge-npm-version-jsx-remove-attributes]: https://img.shields.io/npm/v/@rolldown/plugin-jsx-remove-attributes/latest?color=brightgreen
39+
[badge-npm-version-oxc-unshadowed-visitor]: https://img.shields.io/npm/v/oxc-unshadowed-visitor/latest?color=brightgreen
3940
[url-npm-babel]: https://npmx.dev/package/@rolldown/plugin-babel/v/latest
4041
[url-npm-emotion]: https://npmx.dev/package/@rolldown/plugin-emotion/v/latest
4142
[url-npm-jsx-remove-attributes]: https://npmx.dev/package/@rolldown/plugin-jsx-remove-attributes/v/latest
43+
[url-npm-oxc-unshadowed-visitor]: https://npmx.dev/package/oxc-unshadowed-visitor/v/latest

packages/oxc-unshadowed-visitor/CHANGELOG.md

Whitespace-only changes.

scripts/release.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ process.chdir(path.join(import.meta.dirname, '..'))
77

88
await release({
99
repo: 'rolldown/plugins',
10-
packages: ['plugin-babel', 'plugin-emotion', 'plugin-jsx-remove-attributes'],
10+
packages: [
11+
'plugin-babel',
12+
'plugin-emotion',
13+
'plugin-jsx-remove-attributes',
14+
'oxc-unshadowed-visitor',
15+
],
1116
toTag: (pkg, version) => `${pkg}@${version}`,
1217
logChangelog: (pkg) => logRecentCommits(pkg, getPkgDir(pkg)),
1318
getPkgDir,

0 commit comments

Comments
 (0)