brighterscript 0.68.1 → 0.68.2
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 +10 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
## [0.68.2](https://github.com/rokucommunity/brighterscript/compare/v0.68.1...v0.68.2) - 2024-12-06
|
|
10
|
+
### Changed
|
|
11
|
+
- Add more convenience exports from vscode-languageserver ([#1359](https://github.com/rokucommunity/brighterscript/pull/1359))
|
|
12
|
+
- upgrade to [roku-deploy@3.12.3](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#3123---2024-12-06). Notable changes since 3.12.2:
|
|
13
|
+
- Fix issues with detecting "check for updates required" ([roku-deploy#181](https://github.com/rokucommunity/roku-deploy/pull/181))
|
|
14
|
+
- Identify when a 577 error is thrown, send a new developer friendly message ([roku-deploy#180](https://github.com/rokucommunity/roku-deploy/pull/180))
|
|
15
|
+
- Bump dependencies to remove audit issues ([roku-deploy#178](https://github.com/rokucommunity/roku-deploy/pull/178))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
9
19
|
## [0.68.1](https://github.com/rokucommunity/brighterscript/compare/v0.68.0...v0.68.1) - 2024-11-26
|
|
10
20
|
### Added
|
|
11
21
|
- Add Namespace Source Literals ([#1354](https://github.com/rokucommunity/brighterscript/pull/1354))
|
package/dist/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ export * from './parser/Expression';
|
|
|
17
17
|
export * from './parser/Statement';
|
|
18
18
|
export * from './BsConfig';
|
|
19
19
|
export * from './deferred';
|
|
20
|
-
export { Range, Position, CancellationToken, CancellationTokenSource, DiagnosticSeverity, DiagnosticTag, SemanticTokenTypes, CodeAction } from 'vscode-languageserver';
|
|
20
|
+
export { Diagnostic, Range, Location, Position, CancellationToken, CancellationTokenSource, DiagnosticRelatedInformation, DiagnosticSeverity, DiagnosticTag, SemanticTokenTypes, CodeAction, CodeDescription, URI } from 'vscode-languageserver';
|
|
21
21
|
export * from './astUtils/visitors';
|
|
22
22
|
export * from './astUtils/stackedVisitor';
|
|
23
23
|
export * from './astUtils/reflection';
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.CodeAction = exports.SemanticTokenTypes = exports.DiagnosticTag = exports.DiagnosticSeverity = exports.CancellationTokenSource = exports.CancellationToken = exports.Position = exports.Range = exports.Lexer = exports.Watcher = void 0;
|
|
17
|
+
exports.URI = exports.CodeDescription = exports.CodeAction = exports.SemanticTokenTypes = exports.DiagnosticTag = exports.DiagnosticSeverity = exports.DiagnosticRelatedInformation = exports.CancellationTokenSource = exports.CancellationToken = exports.Position = exports.Location = exports.Range = exports.Diagnostic = exports.Lexer = exports.Watcher = void 0;
|
|
18
18
|
__exportStar(require("./ProgramBuilder"), exports);
|
|
19
19
|
__exportStar(require("./Program"), exports);
|
|
20
20
|
__exportStar(require("./Scope"), exports);
|
|
@@ -38,14 +38,19 @@ __exportStar(require("./BsConfig"), exports);
|
|
|
38
38
|
__exportStar(require("./deferred"), exports);
|
|
39
39
|
// convenience re-export from vscode
|
|
40
40
|
var vscode_languageserver_1 = require("vscode-languageserver");
|
|
41
|
+
Object.defineProperty(exports, "Diagnostic", { enumerable: true, get: function () { return vscode_languageserver_1.Diagnostic; } });
|
|
41
42
|
Object.defineProperty(exports, "Range", { enumerable: true, get: function () { return vscode_languageserver_1.Range; } });
|
|
43
|
+
Object.defineProperty(exports, "Location", { enumerable: true, get: function () { return vscode_languageserver_1.Location; } });
|
|
42
44
|
Object.defineProperty(exports, "Position", { enumerable: true, get: function () { return vscode_languageserver_1.Position; } });
|
|
43
45
|
Object.defineProperty(exports, "CancellationToken", { enumerable: true, get: function () { return vscode_languageserver_1.CancellationToken; } });
|
|
44
46
|
Object.defineProperty(exports, "CancellationTokenSource", { enumerable: true, get: function () { return vscode_languageserver_1.CancellationTokenSource; } });
|
|
47
|
+
Object.defineProperty(exports, "DiagnosticRelatedInformation", { enumerable: true, get: function () { return vscode_languageserver_1.DiagnosticRelatedInformation; } });
|
|
45
48
|
Object.defineProperty(exports, "DiagnosticSeverity", { enumerable: true, get: function () { return vscode_languageserver_1.DiagnosticSeverity; } });
|
|
46
49
|
Object.defineProperty(exports, "DiagnosticTag", { enumerable: true, get: function () { return vscode_languageserver_1.DiagnosticTag; } });
|
|
47
50
|
Object.defineProperty(exports, "SemanticTokenTypes", { enumerable: true, get: function () { return vscode_languageserver_1.SemanticTokenTypes; } });
|
|
48
51
|
Object.defineProperty(exports, "CodeAction", { enumerable: true, get: function () { return vscode_languageserver_1.CodeAction; } });
|
|
52
|
+
Object.defineProperty(exports, "CodeDescription", { enumerable: true, get: function () { return vscode_languageserver_1.CodeDescription; } });
|
|
53
|
+
Object.defineProperty(exports, "URI", { enumerable: true, get: function () { return vscode_languageserver_1.URI; } });
|
|
49
54
|
__exportStar(require("./astUtils/visitors"), exports);
|
|
50
55
|
__exportStar(require("./astUtils/stackedVisitor"), exports);
|
|
51
56
|
__exportStar(require("./astUtils/reflection"), exports);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,mDAAiC;AACjC,4CAA0B;AAC1B,0CAAwB;AACxB,kDAAgC;AAChC,kDAAgC;AAChC,yCAAuB;AACvB,qCAAoC;AAA3B,kGAAA,OAAO,OAAA;AAChB,+CAA6B;AAC7B,mDAAiC;AACjC,6CAA2B;AAC3B,oDAAkC;AAClC,gDAA8B;AAC9B,uCAAsC;AAA7B,8FAAA,KAAK,OAAA;AACd,kDAAgC;AAChC,mDAAiC;AACjC,sDAAoC;AACpC,qDAAmC;AACnC,6CAA2B;AAC3B,6CAA2B;AAC3B,oCAAoC;AACpC,+
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,mDAAiC;AACjC,4CAA0B;AAC1B,0CAAwB;AACxB,kDAAgC;AAChC,kDAAgC;AAChC,yCAAuB;AACvB,qCAAoC;AAA3B,kGAAA,OAAO,OAAA;AAChB,+CAA6B;AAC7B,mDAAiC;AACjC,6CAA2B;AAC3B,oDAAkC;AAClC,gDAA8B;AAC9B,uCAAsC;AAA7B,8FAAA,KAAK,OAAA;AACd,kDAAgC;AAChC,mDAAiC;AACjC,sDAAoC;AACpC,qDAAmC;AACnC,6CAA2B;AAC3B,6CAA2B;AAC3B,oCAAoC;AACpC,+DAAiP;AAAxO,mHAAA,UAAU,OAAA;AAAE,8GAAA,KAAK,OAAA;AAAE,iHAAA,QAAQ,OAAA;AAAE,iHAAA,QAAQ,OAAA;AAAE,0HAAA,iBAAiB,OAAA;AAAE,gIAAA,uBAAuB,OAAA;AAAE,qIAAA,4BAA4B,OAAA;AAAE,2HAAA,kBAAkB,OAAA;AAAE,sHAAA,aAAa,OAAA;AAAE,2HAAA,kBAAkB,OAAA;AAAE,mHAAA,UAAU,OAAA;AAAE,wHAAA,eAAe,OAAA;AAAE,4GAAA,GAAG,OAAA;AACjN,sDAAoC;AACpC,4DAA0C;AAC1C,wDAAsC;AACtC,sDAAoC;AACpC,iDAA+B;AAC/B,uDAAqC;AACrC,sDAAoC;AACpC,2CAAyB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "brighterscript",
|
|
3
|
-
"version": "0.68.
|
|
3
|
+
"version": "0.68.2",
|
|
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",
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
"parse-ms": "^2.1.0",
|
|
153
153
|
"readline": "^1.3.0",
|
|
154
154
|
"require-relative": "^0.8.7",
|
|
155
|
-
"roku-deploy": "^3.12.
|
|
155
|
+
"roku-deploy": "^3.12.3",
|
|
156
156
|
"serialize-error": "^7.0.1",
|
|
157
157
|
"source-map": "^0.7.4",
|
|
158
158
|
"vscode-languageserver": "^9.0.1",
|