New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@solid-soda/tsn

Package Overview
Dependencies
Maintainers
3
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@solid-soda/tsn - npm Package Compare versions

Comparing version
1.3.0
to
1.3.1
+6
-0
CHANGELOG.md

@@ -5,2 +5,8 @@ # Changelog

### [1.3.1](https://github.com/solid-soda/ts-to-node/compare/v1.3.0...v1.3.1) (2020-11-30)
### Bug Fixes
- fix bug with exports ([14a4457](https://github.com/solid-soda/ts-to-node/commit/14a445797fc9808d78479e6d376ee5f7a58d9a3d))
## [1.3.0](https://github.com/solid-soda/ts-to-node/compare/v1.2.3...v1.3.0) (2020-08-24)

@@ -7,0 +13,0 @@

+4
-4

@@ -13,2 +13,3 @@ const through2 = require('through2');

...Array.from(codeLine.match(/import (.+) from ('|")(.*)('|")/g) || []),
...Array.from(codeLine.match(/export (.+) from ('|")(.*)('|")/g) || []),
];

@@ -37,6 +38,5 @@

newCodeLine = newCodeLine.replace(
new RegExp(typescriptPath, 'g'),
`./${relativePath}/`,
);
newCodeLine = newCodeLine
.replace(new RegExp(typescriptPath, 'g'), `./${relativePath}/`)
.replace(/\/\//g, '/');
}

@@ -43,0 +43,0 @@ }

{
"name": "@solid-soda/tsn",
"version": "1.3.0",
"version": "1.3.1",
"main": "lib/index.js",

@@ -5,0 +5,0 @@ "repository": "git@github.com:solid-soda/ts-to-node.git",