Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-tsb

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-tsb - npm Package Compare versions

Comparing version 1.10.0 to 1.10.1

11

lib/builder.js

@@ -384,3 +384,12 @@ 'use strict';

LanguageServiceHost.prototype.getScriptFileNames = function () {
return Object.keys(this._snapshots).filter(function (filename) { return /\.tsx?/i.test(path.extname(filename)); });
var result = [];
var defaultLibFileName = this.getDefaultLibFileName(this.getCompilationSettings());
for (var fileName in this._snapshots) {
if (/\.tsx?/i.test(path.extname(fileName))
&& fileName !== defaultLibFileName) {
// only ts-files and not lib.d.ts-like files
result.push(fileName);
}
}
return result;
};

@@ -387,0 +396,0 @@ LanguageServiceHost.prototype.getScriptVersion = function (filename) {

@@ -0,0 +0,0 @@ /// <reference path="../node_modules/typescript/lib/lib.es6.d.ts"/>

3

lib/tests/index.test.js

@@ -8,3 +8,4 @@ 'use strict';

json: true,
verbose: true
verbose: true,
noFilesystemLookup: true
};

@@ -11,0 +12,0 @@ Object.freeze(config);

@@ -0,0 +0,0 @@ 'use strict';

@@ -0,0 +0,0 @@ 'use strict';

{
"name": "gulp-tsb",
"version": "1.10.0",
"version": "1.10.1",
"author": "Johannes Rieken <johannes.rieken@gmail.com>",

@@ -5,0 +5,0 @@ "description": "A gulp plugin for very fast TypeScript compilation.",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc