From: James Yu Date: Tue, 6 Sep 2016 17:43:50 +0000 (-0400) Subject: Fixes bundled output path X-Git-Tag: 2.0.0~1^2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=896c11ece1c11c3a57c5169dbbaa24865016cded;p=github%2Ffretlink%2Fpurs-loader.git Fixes bundled output path --- diff --git a/src/Psc.js b/src/Psc.js index 9269e0f..3901eca 100644 --- a/src/Psc.js +++ b/src/Psc.js @@ -86,7 +86,7 @@ function bundle(options, cache) { return reject(true) } cache.bundle = stderr - resolve(fs.appendFileAsync('output/bundle.js', `module.exports = ${options.bundleNamespace}`)) + resolve(fs.appendFileAsync(options.bundleOutput, `module.exports = ${options.bundleNamespace}`)) }) })) }