Comparing version 1.0.8 to 1.0.9
@@ -158,2 +158,22 @@ 'use strict'; | ||
Host.prototype.directoryExists = function (dirname) { | ||
return ts.sys.directoryExists(dirname); | ||
}; | ||
Host.prototype.getDirectories = function (dirname) { | ||
return ts.sys.getDirectories(dirname); | ||
}; | ||
Host.prototype.getEnvironmentVariable = function (name) { | ||
return ts.sys.getEnvironmentVariable(name); | ||
}; | ||
Host.prototype.realpath = function (name) { | ||
return realpath.realpathSync(name); | ||
}; | ||
Host.prototype.trace = function (message) { | ||
ts.sys.write(message + this.getNewLine()); | ||
}; | ||
Host.prototype._rootFilenames = function () { | ||
@@ -160,0 +180,0 @@ |
{ | ||
"name": "tsify", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "Browserify plugin for compiling Typescript", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -131,2 +131,3 @@ # tsify | ||
* 1.0.9 - Implemented additional compiler host methods to support the default inclusion of visible `@types` modules. | ||
* 1.0.8 - Implemented file system case-sensitivity detection, fixing [#200](//github.com/TypeStrong/tsify/issues/200). | ||
@@ -133,0 +134,0 @@ * 1.0.7 - Replaced `Object.assign` with [`object-assign`](https://github.com/sindresorhus/object-assign) for Node 0.12 compatibility. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
38374
582
214