diff options
author | James Yu <jj6yu@uwaterloo.ca> | 2016-09-06 13:43:50 -0400 |
---|---|---|
committer | James Yu <jj6yu@uwaterloo.ca> | 2016-09-06 13:43:50 -0400 |
commit | 896c11ece1c11c3a57c5169dbbaa24865016cded (patch) | |
tree | 8ee397a7b795e6dfe0943384ada8b768f30ad7ee | |
parent | 689268da53468c5cb413353b600ba499957d4389 (diff) | |
download | purs-loader-896c11ece1c11c3a57c5169dbbaa24865016cded.tar.gz purs-loader-896c11ece1c11c3a57c5169dbbaa24865016cded.tar.zst purs-loader-896c11ece1c11c3a57c5169dbbaa24865016cded.zip |
Fixes bundled output path
-rw-r--r-- | src/Psc.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -86,7 +86,7 @@ function bundle(options, cache) { | |||
86 | return reject(true) | 86 | return reject(true) |
87 | } | 87 | } |
88 | cache.bundle = stderr | 88 | cache.bundle = stderr |
89 | resolve(fs.appendFileAsync('output/bundle.js', `module.exports = ${options.bundleNamespace}`)) | 89 | resolve(fs.appendFileAsync(options.bundleOutput, `module.exports = ${options.bundleNamespace}`)) |
90 | }) | 90 | }) |
91 | })) | 91 | })) |
92 | } | 92 | } |