-
Notifications
You must be signed in to change notification settings - Fork 73
/
index.js
100 lines (88 loc) · 3.17 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
'use strict';
const res = require('path').resolve;
const postcss = require('postcss');
const base = { plugins:[], options:{} };
const filenames = ['.postcssrc', '.postcssrc.js', 'postcss.config.js', 'package.json'];
const isString = any => typeof any === 'string';
const isObject = any => !!any && typeof any === 'object' && !Array.isArray(any);
const isEmptyObj = any => isObject(any) && Object.keys(any).length === 0;
module.exports = function (task, utils) {
const rootDir = str => res(task.root, str);
const setError = msg => task.emit('plugin_error', { plugin:'@taskr/postcss', error:msg });
const getConfig = arr => Promise.all(arr.map(utils.find)).then(res => res.filter(Boolean)).then(res => res[0]);
task.plugin('postcss', { every:false }, function * (files, opts) {
let config, isJSON = false;
if (isEmptyObj(opts)) {
// autoload a file
const fileConfig = yield getConfig(filenames.map(rootDir));
// process if found one!
if (fileConfig !== void 0) {
try {
config = require(fileConfig);
} catch (err) {
try {
isJSON = true; // .rc file
config = JSON.parse(yield utils.read(fileConfig, 'utf8'));
} catch (_) {
return setError(err.message);
}
}
// handle config types
if (typeof config === 'function') {
config = config(base); // send default values
} else if (isObject(config)) {
// grab "postcss" key (package.json)
if (config.postcss !== void 0) {
config = config.postcss;
isJSON = true;
}
// reconstruct plugins?
if (isObject(config.plugins)) {
let k, plugins=[];
for (k in config.plugins) {
try {
plugins.push(require(k)(config.plugins[k]));
} catch (err) {
return setError(`Loading PostCSS plugin (${k}) failed with: ${err.message}`);
}
}
config.plugins = plugins; // update config
} else if (isJSON && Array.isArray(config.plugins)) {
const truthy = config.plugins.filter(Boolean);
let i=0, len=truthy.length, plugins=[];
for (; i<len; i++) {
try {
plugins.push(require(truthy[i]));
} catch (err) {
return setError(`Loading PostCSS plugin (${truthy[i]}) failed with: ${err.message}`);
}
}
config.plugins = plugins; // update config
}
// reconstruct options
if (config.options !== void 0) {
const co = config.options;
config.options.parser = isString(co.parser) ? require(co.parser) : co.parser;
config.options.syntax = isString(co.syntax) ? require(co.syntax) : co.syntax;
config.options.stringifier = isString(co.stringifier) ? require(co.stringifier) : co.stringifier;
(co.plugins !== void 0) && (delete config.options.plugins);
}
}
}
}
config = config || opts;
if (!isObject(config)) {
return setError(`Invalid PostCSS config! An object is required; recevied: ${typeof config}`);
}
opts = Object.assign({}, base, config);
for (const file of files) {
try {
const ctx = postcss(opts.plugins);
const out = yield ctx.process(file.data.toString(), opts);
file.data = Buffer.from(out.css); // write new data
} catch (err) {
return setError(err.message);
}
}
});
}