Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] bsc 0.66.0-alpha support #91

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
53f8f9c
Fixes for Brighterscript Typing-Phase-1 breaking changes
markwpearce May 24, 2023
cad6866
Fixes for release v0.66.0-alpha1
markwpearce Jun 13, 2023
3e54289
Updated peerDependency
markwpearce Jun 26, 2023
722b98a
Updated peerDependency
markwpearce Jun 26, 2023
78f1c71
Tweak build.yml to support prerelease publishing
TwitchBronBron Jul 5, 2023
d63e260
Merge branch 'master' of https://github.com/rokucommunity/bslint into…
TwitchBronBron Jul 5, 2023
b623648
fix missing types
TwitchBronBron Jul 5, 2023
6186d68
0.9.0-alpha.0
TwitchBronBron Jul 5, 2023
61481e1
Fix event structure
TwitchBronBron Jul 5, 2023
81aa853
Performance boost by lifting some global lookups
TwitchBronBron Jul 14, 2023
f4cebf6
Merge branch 'master' of https://github.com/rokucommunity/bslint into…
TwitchBronBron Jul 14, 2023
483fab1
Merge branch 'master' of https://github.com/rokucommunity/bslint into…
TwitchBronBron Jul 17, 2023
72d9c23
Merge branch 'master' of https://github.com/rokucommunity/bslint into…
TwitchBronBron Jul 27, 2023
c495fb9
[email protected]
TwitchBronBron Jul 27, 2023
d518efb
update changelog for v0.9.0-alpha.0
TwitchBronBron Jul 27, 2023
8c49713
Silence one bsc diagnostic
elsassph Aug 1, 2023
5a4de6f
Add bsc-0.66-alpha.6. Fix tests
TwitchBronBron Sep 21, 2023
1a89364
Merge branch 'master' of https://github.com/rokucommunity/bslint into…
TwitchBronBron Sep 21, 2023
3704798
update changelog for v0.9.0-alpha.1
TwitchBronBron Sep 21, 2023
99e5c5f
0.9.0-alpha.1
TwitchBronBron Sep 21, 2023
0708eb5
Merge branch 'master' of https://github.com/rokucommunity/bslint into…
TwitchBronBron Jan 26, 2024
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: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,7 @@ jobs:
with:
asset_paths: '["./*.tgz"]'

#If there's a dash followed by an alpha character, this is a prerelease and should be tagged "next". Otherwise tag as "latest"
- run: if [[ "${{ github.ref }}" =~ -[a-zA-Z] ]]; then echo "DIST_TAG=next" >> $GITHUB_ENV; else echo "DIST_TAG=latest" >> $GITHUB_ENV; fi
#upload to npm
- run: npm publish --access=public
- run: npm publish --tag ${{env.DIST_TAG}}
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



## [0.9.0-alpha.1](https://github.com/rokucommunity/bslint/compare/v0.9.0-alpha.0...v0.9.0-alpha.1) - 2023-09-21
### Changed
- fixes for brighterscript v0.66.0-alpha.5 through v0.66.0-alpha.6
## [0.8.16](https://github.com/rokucommunity/bslint/compare/v0.8.15...v0.8.16) - 2024-01-25
### Changed
- upgrade to [[email protected]](https://github.com/rokucommunity/brighterscript/blob/master/CHANGELOG.md#06518---2024-01-25). Notable changes since 0.65.17:
Expand Down Expand Up @@ -83,6 +86,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



## [0.9.0-alpha.0](https://github.com/rokucommunity/bslint/compare/v0.8.9...v0.9.0-alpha.0) - 2023-07-27
### Changed
- fixes for brighterscript v0.66.0-alpha.0 through v0.66.0-alpha.4



## [0.8.9](https://github.com/rokucommunity/bslint/compare/v0.8.8...v0.8.9) - 2023-07-24
### Changed
- upgrade to [[email protected]](https://github.com/rokucommunity/brighterscript/blob/master/CHANGELOG.md#0654---2023-07-24). Notable changes since 0.65.2:
Expand Down Expand Up @@ -135,7 +144,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix namespace-relative items ([brighterscript#789](https://github.com/rokucommunity/brighterscript/pull/789))
- Wrap transpiled template strings in parens ([brighterscript#788](https://github.com/rokucommunity/brighterscript/pull/788))
- Simplify the ast range logic ([brighterscript#784](https://github.com/rokucommunity/brighterscript/pull/784))
### Fixed
### Fixed
- do not consider consts as unused variables ([#85](https://github.com/rokucommunity/bslint/pull/85))


Expand Down
Loading