brighterscript 0.64.3 → 0.64.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
## [0.64.4](https://github.com/rokucommunity/brighterscript/compare/v0.64.3...0.64.4) - 2023-05-10
|
|
10
|
+
### Changed
|
|
11
|
+
- upgrade to [roku-deploy@3.10.2](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#3102---2023-05-10). Notable changes since 3.10.1:
|
|
12
|
+
- Fix audit issues ([roku-deploy#116](https://github.com/rokucommunity/roku-deploy/pull/116))
|
|
13
|
+
- fix nodejs 19 bug ([roku-deploy#115](https://github.com/rokucommunity/roku-deploy/pull/115))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
9
17
|
## [0.64.3](https://github.com/rokucommunity/brighterscript/compare/v0.64.2...v0.64.3) - 2023-04-28
|
|
10
18
|
### Changed
|
|
11
19
|
- Improves performance in symbol table fetching ([#797](https://github.com/rokucommunity/brighterscript/pull/797))
|
package/README.md
CHANGED
|
@@ -496,7 +496,7 @@ A map of error codes and severity levels that will override diagnostics' severit
|
|
|
496
496
|
```jsonc
|
|
497
497
|
"diagnosticSeverityOverrides": {
|
|
498
498
|
"1011": "error", //raise a warning to an error
|
|
499
|
-
"
|
|
499
|
+
"LINT1001": "warn" //oops we have lots of those to fix... later
|
|
500
500
|
}
|
|
501
501
|
```
|
|
502
502
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "brighterscript",
|
|
3
|
-
"version": "0.64.
|
|
3
|
+
"version": "0.64.4",
|
|
4
4
|
"description": "A superset of Roku's BrightScript language.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"preversion": "npm run build && npm run lint && npm run test",
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
"parse-ms": "^2.1.0",
|
|
145
145
|
"readline": "^1.3.0",
|
|
146
146
|
"require-relative": "^0.8.7",
|
|
147
|
-
"roku-deploy": "^3.10.
|
|
147
|
+
"roku-deploy": "^3.10.2",
|
|
148
148
|
"serialize-error": "^7.0.1",
|
|
149
149
|
"source-map": "^0.7.4",
|
|
150
150
|
"vscode-languageserver": "7.0.0",
|