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

tsun

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tsun - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

5

bin/src/repl.js

@@ -65,3 +65,6 @@ /// <reference path='../typings/node.d.ts' />

var dir = dirs_1[_i];
libPaths.push(path.join(typings, dir));
var p = path.join(typings, dir);
if (fs.statSync(p).isFile()) {
libPaths.push(p);
}
}

@@ -68,0 +71,0 @@ }

2

package.json
{
"name": "tsun",
"version": "0.1.1",
"version": "0.1.2",
"description": "TSUN: a repl for TypeScript Upgraded Node",

@@ -5,0 +5,0 @@ "bin": "./bin/tsun",

@@ -76,3 +76,6 @@ /// <reference path='../typings/node.d.ts' />

for (let dir of dirs) {
libPaths.push(path.join(typings, dir))
let p = path.join(typings, dir)
if (fs.statSync(p).isFile()) {
libPaths.push(p)
}
}

@@ -79,0 +82,0 @@ } catch(e) {

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