forked from webpack-contrib/coffee-loader
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
42 lines (42 loc) · 1.77 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Authors: Jiri Sifalda @jsifalda, Tobias Koppers @sokra
*/
var coffee = require("coffee-react");
var loaderUtils = require("loader-utils");
module.exports = function(source) {
this.cacheable && this.cacheable();
var coffeeRequest = loaderUtils.getRemainingRequest(this);
var jsRequest = loaderUtils.getCurrentRequest(this);
var query = loaderUtils.parseQuery(this.query);
var result;
try {
result = coffee.compile(source, {
literate: query.literate,
filename: coffeeRequest,
debug: this.debug,
bare: true,
sourceMap: true,
sourceRoot: "",
sourceFiles: [coffeeRequest],
generatedFile: jsRequest
});
} catch (e) {
var err = "";
if (e.location == null || e.location.first_column == null || e.location.first_line == null) {
err += "Got an unexpected exception from the coffee-script compiler. The original exception was: " + e + "\n";
err += "(The coffee-script compiler should not raise *unexpected* exceptions. You can file this error as an issue of the coffee-script compiler: https://github.com/jashkenas/coffee-script/issues)\n";
} else {
var codeLine = source.split("\n")[e.location.first_line];
var offendingCharacter = (e.location.first_column < codeLine.length) ? codeLine[e.location.first_column] : "";
err += e + "\n";
// log erroneous line and highlight offending character
err += " L" + e.location.first_line + ": " + codeLine.substring(0, e.location.first_column) + offendingCharacter + codeLine.substring(e.location.first_column + 1) + "\n";
err += " " + (new Array(e.location.first_column + 1).join(" ")) + "^\n";
}
throw new Error(err);
}
var map = JSON.parse(result.v3SourceMap);
map.sourcesContent = [source];
this.callback(null, result.js, map);
}