Socket
Socket
Sign inDemoInstall

tsconfig-paths

Package Overview
Dependencies
Maintainers
2
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tsconfig-paths - npm Package Compare versions

Comparing version 3.1.1 to 3.1.2

9

CHANGELOG.md

@@ -9,2 +9,6 @@ # Change Log

## [3.1.2] - 2018-03-13
### Fixed
- Fix a forgotten return when doneCallback is invoked, see [#29](https://github.com/dividab/tsconfig-paths/pull/29). Thanks to [@Nayni](https://github.com/Nayni) for this fix!
## [3.1.1] - 2018-01-13

@@ -141,4 +145,5 @@ ### Fixed

[Unreleased]: https://github.com/dividab/tsconfig-paths/compare/3.1.1...master
[3.1.0]: https://github.com/dividab/tsconfig-paths/compare/3.1.0...3.1.1
[Unreleased]: https://github.com/dividab/tsconfig-paths/compare/3.1.2...master
[3.1.2]: https://github.com/dividab/tsconfig-paths/compare/3.1.1...3.1.2
[3.1.1]: https://github.com/dividab/tsconfig-paths/compare/3.1.0...3.1.1
[3.1.0]: https://github.com/dividab/tsconfig-paths/compare/3.0.0...3.1.0

@@ -145,0 +150,0 @@ [3.0.0]: https://github.com/dividab/tsconfig-paths/compare/2.7.3...3.0.0

@@ -66,3 +66,3 @@ "use strict";

// Not sure why we don't just return the full path? Why strip it?
doneCallback(undefined, Filesystem.removeExtension(file_1));
return doneCallback(undefined, Filesystem.removeExtension(file_1));
}

@@ -69,0 +69,0 @@ // Continue with the next path

{
"name": "tsconfig-paths",
"version": "3.1.1",
"version": "3.1.2",
"description": "Load node modules according to tsconfig paths, in run-time or via API.",

@@ -24,2 +24,3 @@ "main": "lib/index.js",

"prettier": "1.7.4",
"rimraf": "^2.6.2",
"shelljs": "^0.7.5",

@@ -41,7 +42,7 @@ "ts-node": "^3.1.0",

"test": "mocha",
"build": "rm -rf lib && tsc -p src",
"build:test": "rm -rf ./test/js_out && tsc -p test",
"build": "rimraf lib && tsc -p src",
"build:test": "rimraf ./test/js_out && tsc -p test",
"lint": "tslint './{src,tests}/**/*.ts{,x}'",
"verify": "yarn build && yarn lint && yarn coverage",
"coverage": "rm -rf coverage .nyc_output && nyc yarn test",
"coverage": "rimraf coverage .nyc_output && nyc yarn test",
"report-coverage": "cat ./coverage/lcov.info | coveralls",

@@ -48,0 +49,0 @@ "precommit": "lint-staged",

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