brighterscript 0.51.3 → 0.51.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 CHANGED
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
 
8
8
 
9
+ ## [0.51.4](https://github.com/rokucommunity/brighterscript/compare/v0.51.3...v0.51.4) - 2022-05-31
10
+ ### Fixed
11
+ - Add allowBrighterScriptInBrightScript to bsconfig.schema.json ([#610](https://github.com/rokucommunity/brighterscript/pull/610))
12
+
13
+
14
+
9
15
  ## [0.51.3](https://github.com/rokucommunity/brighterscript/compare/v0.51.2...v0.51.3) - 2022-05-31
10
16
  ### Fixed
11
17
  - hover for namespace functions ([#606](https://github.com/rokucommunity/brighterscript/pull/606))
@@ -165,7 +165,10 @@
165
165
  "items": {
166
166
  "anyOf": [
167
167
  {
168
- "type": ["number", "string"],
168
+ "type": [
169
+ "number",
170
+ "string"
171
+ ],
169
172
  "description": "A code of diagnostics that should be filtered out from the files matched in 'src'"
170
173
  }
171
174
  ]
@@ -232,6 +235,11 @@
232
235
  "warn",
233
236
  "error"
234
237
  ]
238
+ },
239
+ "allowBrighterScriptInBrightScript": {
240
+ "description": "Allow brighterscript features (classes, interfaces, etc...) to be included in BrightScript (`.brs`) files, and force those files to be transpiled.",
241
+ "type": "boolean",
242
+ "default": false
235
243
  }
236
244
  }
237
- }
245
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brighterscript",
3
- "version": "0.51.3",
3
+ "version": "0.51.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",