Keep the same outputFilePath as the inputFilePath was, to prevent Meteor from adding a second layer of exports, to prevent a circular dependency; see https://github.com/meteor/meteor/issues/9176#issuecomment-334942137

This commit is contained in:
Geoffrey Booth
2017-10-07 16:11:26 -07:00
committed by Ben Newman
parent 4494d53ec5
commit 0707a18954

View File

@@ -41,7 +41,7 @@ export class CoffeeScriptCompiler {
}
outputFilePath(inputFile) {
return inputFile.getPathInPackage() + '.js';
return inputFile.getPathInPackage();
}
compileOneFile(inputFile) {