combine-source-map
Advanced tools
Comparing version 0.1.2 to 0.1.3
{ | ||
"name": "combine-source-map", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Add source maps of multiple files, offset them and then combine them into one source map", | ||
"main": "combine-source-map.js", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "node-trap test/*.js" | ||
"test": "tap test/*.js" | ||
}, | ||
@@ -20,3 +20,3 @@ "repository": { | ||
"devDependencies": { | ||
"trap": "~0.4.2" | ||
"tap": "~0.4.3" | ||
}, | ||
@@ -23,0 +23,0 @@ "keywords": [ |
'use strict'; | ||
/*jshint asi: true */ | ||
var test = require('trap').test; | ||
var test = require('tap').test; | ||
var convert = require('convert-source-map'); | ||
@@ -79,2 +79,3 @@ var parse = require('parse-base64vlq-mappings'); | ||
t.equal(sm.sources[0], 'foo.coffee', 'includes original filename') | ||
t.end() | ||
}); | ||
@@ -125,2 +126,3 @@ | ||
) | ||
t.end() | ||
}) | ||
@@ -145,2 +147,3 @@ | ||
}) | ||
t.end() | ||
}) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15563
266