aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ide.js
diff options
context:
space:
mode:
authoreric <thul.eric@gmail.com>2019-01-20 15:32:26 -0500
committerGitHub <noreply@github.com>2019-01-20 15:32:26 -0500
commitcd1249993b209ad35b2d579b514aa74a2516cb16 (patch)
treee7b8d3e77684f63325eb5a422e76295078f22d2a /src/ide.js
parent59223097e35133918db227b3f75e009c1c46dc68 (diff)
downloadpurs-loader-cd1249993b209ad35b2d579b514aa74a2516cb16.tar.gz
purs-loader-cd1249993b209ad35b2d579b514aa74a2516cb16.tar.zst
purs-loader-cd1249993b209ad35b2d579b514aa74a2516cb16.zip
Sourcemaps for ide rebuild (#118)
Resolves #116
Diffstat (limited to 'src/ide.js')
-rw-r--r--src/ide.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ide.js b/src/ide.js
index 00de55b..d3707a4 100644
--- a/src/ide.js
+++ b/src/ide.js
@@ -202,9 +202,9 @@ module.exports.rebuild = function rebuild(psModule) {
202 202
203 const body = { 203 const body = {
204 command: 'rebuild', 204 command: 'rebuild',
205 params: { 205 params: Object.assign({
206 file: psModule.srcPath, 206 file: psModule.srcPath,
207 } 207 }, options.pscIdeRebuildArgs)
208 }; 208 };
209 209
210 const parseResponse = response => { 210 const parseResponse = response => {