forked from systemjs/plugin-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-builder.js
67 lines (50 loc) · 1.92 KB
/
css-builder.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
var CleanCSS = require('clean-css');
var fs = require('fs');
var path = require('path');
function escape(source) {
return source
.replace(/(["\\])/g, '\\$1')
.replace(/[\f]/g, "\\f")
.replace(/[\b]/g, "\\b")
.replace(/[\n]/g, "\\n")
.replace(/[\t]/g, "\\t")
.replace(/[\r]/g, "\\r")
.replace(/[\u2028]/g, "\\u2028")
.replace(/[\u2029]/g, "\\u2029");
}
function fromFileURL(address) {
address = address.replace(/^file:\/+/, '');
if (!process.platform.match(/^win/))
address = '/' + address;
return address.replace(/\//g, path.sep);
}
var cssInject = "(function(c){var d=document,a='appendChild',i='styleSheet',s=d.createElement('style');s.type='text/css';d.getElementsByTagName('head')[0][a](s);s[i]?s[i].cssText=c:s[a](d.createTextNode(c));})";
module.exports = function bundle(loads, opts) {
var loader = this;
var stubDefines = loads.map(function(load) {
return "System\.register('" + load.name + "', [], false, function() {});";
}).join('\n');
var rootURL = loader.rootURL || fromFileURL(loader.baseURL)
var cleanCSS = new CleanCSS({
target: loader.separateCSS ? opts.outFile : rootURL,
relativeTo: rootURL,
sourceMap: !!opts.sourceMaps,
sourceMapInlineSources: opts.sourceMapContents
}).minify(loads.map(function(load) {
return fromFileURL(load.address)
}));
if (cleanCSS.errors.length)
throw new Error('CSS Plugin:\n' + cleanCSS.errors.join('\n'));
var cssOutput = cleanCSS.styles;
// write a separate CSS file if necessary
if (loader.separateCSS) {
var outFile = opts.outFile.replace(/\.js$/, '.css');
if (opts.sourceMaps) {
fs.writeFileSync(outFile + '.map', cleanCSS.sourceMap.toString());
cssOutput += '/*# sourceMappingURL=' + path.basename(outFile) + '.map*/';
}
fs.writeFileSync(outFile, cssOutput);
return stubDefines;
}
return [stubDefines, cssInject, '("' + escape(cssOutput) + '");'].join('\n');
};