aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/index.js
diff options
context:
space:
mode:
authorCyril Sobierajewicz <cyril.sobierajewicz@fretlink.com>2018-12-03 11:53:45 +0100
committerCyril Sobierajewicz <cyril.sobierajewicz@fretlink.com>2018-12-03 11:57:30 +0100
commite3de0f7156c579e5db05e6cb895df3884e8b9cdd (patch)
tree02e3769ef013b434332c0da1be9f78bf2e448daf /src/index.js
parent1142175778cdc21add2d4b494a02c53050856aa5 (diff)
downloadpurs-loader-e3de0f7156c579e5db05e6cb895df3884e8b9cdd.tar.gz
purs-loader-e3de0f7156c579e5db05e6cb895df3884e8b9cdd.tar.zst
purs-loader-e3de0f7156c579e5db05e6cb895df3884e8b9cdd.zip
Tag errors with a specific constructor to simplify their detection
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js
index 01ad5a6..8a2e468 100644
--- a/src/index.js
+++ b/src/index.js
@@ -238,7 +238,7 @@ module.exports = function purescriptLoader(source, map) {
238 modules.push(desc); 238 modules.push(desc);
239 } 239 }
240 240
241 CACHE_VAR.errors.push(Object.assign(new Error(pscMessage), { modules })); 241 CACHE_VAR.errors.push(new utils.PscError(pscMessage, modules));
242 } 242 }
243 } 243 }
244 } 244 }