New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More →

brightscript-language

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

brightscript-language - npm Package Compare versions

Comparing version

to
0.1.15

@@ -7,2 +7,6 @@ # Changelog

## [0.1.15] - 2019-03-04
### Fixed
- Issue where `EventEmitter`s were capped at 10 listeners. They no longer have an upper limit (hopefully there isn't a memory leak...)
## [0.1.14] - 2019-03-02

@@ -29,4 +33,5 @@ ### Changed

[0.1.15]: https://github.com/TwitchBronBron/brightscript-language/compare/v0.1.14...v0.1.15
[0.1.14]: https://github.com/TwitchBronBron/brightscript-language/compare/v0.1.13...v0.1.14
[0.1.13]: https://github.com/TwitchBronBron/brightscript-language/compare/v0.1.2...v0.1.13
[0.1.2]: https://github.com/TwitchBronBron/brightscript-language/compare/v0.1.1...v0.1.2

@@ -57,2 +57,4 @@ "use strict";

this.emitter = new events_1.EventEmitter();
//allow unlimited listeners
this.emitter.setMaxListeners(0);
}

@@ -59,0 +61,0 @@ /**

@@ -95,2 +95,4 @@ "use strict";

this.extension = path.extname(pathAbsolute).toLowerCase();
//allow unlimited listeners
this.emitter.setMaxListeners(0);
}

@@ -97,0 +99,0 @@ XmlFile.prototype.getDiagnostics = function () {

@@ -96,2 +96,4 @@ "use strict";

this.emitter = new events_1.EventEmitter();
//allow unlimited listeners
this.emitter.setMaxListeners(0);
this.options = util_1.default.normalizeConfig(options);

@@ -98,0 +100,0 @@ //normalize the root dir path

{
"name": "brightscript-language",
"version": "0.1.14",
"version": "0.1.15",
"description": "Suite of language tools for Roku's BrightScript language.",

@@ -85,3 +85,3 @@ "scripts": {

"dependencies": {
"brs": "0.13.0-nightly.20190302",
"brs": "0.13.0-nightly.20190304",
"chalk": "^2.4.2",

@@ -88,0 +88,0 @@ "chokidar": "^2.0.4",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet