Comparing version 0.0.11 to 0.0.12
{ | ||
"name": "traceur", | ||
"version": "0.0.11", | ||
"version": "0.0.12", | ||
"description": "Experimental ES6 to ES5 compiler", | ||
@@ -48,5 +48,5 @@ "keywords": [ | ||
"semver": "2.2.1", | ||
"traceur": "0.0.10" | ||
"traceur": "0.0.11" | ||
}, | ||
"subdomain": "traceur" | ||
} |
@@ -31,2 +31,6 @@ // Copyright 2013 Traceur Authors. | ||
// The System object requires traceur, but we want it set for everything that | ||
// follows. The module sets global.System as a side-effect. | ||
require('./System.js'); | ||
flags.option('--out <FILE>', 'Compile all input files into a single file'); | ||
@@ -33,0 +37,0 @@ flags.option('--referrer <name>', |
@@ -29,2 +29,3 @@ // Copyright 2012 Traceur Authors. | ||
var ModuleAnalyzer = traceur.semantics.ModuleAnalyzer; | ||
var moduleStore = traceur.runtime.ModuleStore; | ||
@@ -38,3 +39,5 @@ /** | ||
function InlineLoaderHooks(reporter, url, elements, depTarget) { | ||
LoaderHooks.call(this, reporter, url, undefined, nodeLoader); | ||
LoaderHooks.call(this, reporter, url, undefined, | ||
nodeLoader, // Load modules using node fs. | ||
moduleStore); // Look up modules in our static module store | ||
this.dirname = url; | ||
@@ -41,0 +44,0 @@ this.elements = elements; |
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
948036
19
24664
8