js-makedepend
Advanced tools
Comparing version 2.3.0 to 2.4.0
{ | ||
"name": "js-makedepend", | ||
"version": "2.3.0", | ||
"version": "2.4.0", | ||
"description": "Determines dependencies of javascript modules and saves them in a Makefile. A bit like makedepend does for C.", | ||
@@ -51,3 +51,3 @@ "bin": { | ||
"coffee-script": "1.12.7", | ||
"dependency-cruiser": "2.4.2", | ||
"dependency-cruiser": "2.5.0", | ||
"eslint": "4.8.0", | ||
@@ -57,3 +57,3 @@ "eslint-plugin-security": "1.4.0", | ||
"istanbul": "0.4.5", | ||
"mocha": "4.0.0", | ||
"mocha": "4.0.1", | ||
"npm-check-updates": "2.13.0", | ||
@@ -60,0 +60,0 @@ "nsp": "2.8.1", |
@@ -9,4 +9,9 @@ "use strict"; | ||
/* for a rationale on how .jsx parsing works - see | ||
* https://github.com/sverweij/dependency-cruiser/blob/develop/src/extract/transpile/jsxImplementationRationale.md | ||
*/ | ||
const extension2wrapper = { | ||
".js" : jsWrap, | ||
".jsx" : jsWrap, | ||
".ts" : tsWrap, | ||
@@ -13,0 +18,0 @@ ".tsx" : tsWrap, |
49868
28
728