Comparing version 0.0.84 to 0.0.85
{ | ||
"name": "traceur", | ||
"version": "0.0.84", | ||
"version": "0.0.85", | ||
"description": "ES6 to ES5 compiler", | ||
@@ -57,3 +57,3 @@ "keywords": [ | ||
"requirejs": "2.x", | ||
"traceur": "0.0.83", | ||
"traceur": "0.0.84", | ||
"promises-aplus-tests": "2.x" | ||
@@ -60,0 +60,0 @@ }, |
@@ -29,2 +29,3 @@ // Copyright 2013 Traceur Authors. | ||
}; | ||
System.import(moduleName, {metadata: metadata}). | ||
@@ -31,0 +32,0 @@ catch(function(err) { |
@@ -44,3 +44,6 @@ // Copyright 2014 Traceur Authors. | ||
if (sourcemap) { | ||
writeFile(this.sourceMappingURL(filename), sourcemap); | ||
var mapName = this.sourceMappingURL(filename); | ||
// Write the map file next to the output file. | ||
mapName = path.resolve(path.dirname(filename), mapName); | ||
writeFile(mapName, sourcemap); | ||
} | ||
@@ -47,0 +50,0 @@ } |
@@ -47,3 +47,2 @@ // Copyright 2012 Traceur Authors. | ||
process.chdir(outputDir); | ||
// Make includes relative to output dir so that sourcemap paths are correct. | ||
@@ -50,0 +49,0 @@ resolvedIncludes = resolvedIncludes.map(function(include) { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
1342982
34909