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

tsify

Package Overview
Dependencies
Maintainers
3
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tsify - npm Package Compare versions

Comparing version 1.0.8 to 1.0.9

20

lib/Host.js

@@ -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 @@

2

package.json
{
"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.

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