From 3c51c3be85bb0d1bdb87ea0d6632f1c256912f27 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Sun, 6 Oct 2019 21:37:45 +0200 Subject: build: Add some required modules for node --- node_modules/postcss-load-options/lib/options.js | 33 ++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 node_modules/postcss-load-options/lib/options.js (limited to 'node_modules/postcss-load-options/lib') diff --git a/node_modules/postcss-load-options/lib/options.js b/node_modules/postcss-load-options/lib/options.js new file mode 100644 index 0000000..e8e9e81 --- /dev/null +++ b/node_modules/postcss-load-options/lib/options.js @@ -0,0 +1,33 @@ +// ------------------------------------ +// #POSTCSS - LOAD OPTIONS - OPTIONS +// ------------------------------------ + +'use strict' + +/** + * + * @method options + * + * @param {Object} options PostCSS Config + * + * @return {Object} options PostCSS Options + */ +module.exports = function options (options) { + if (options.parser && typeof options.parser === 'string') { + options.parser = require(options.parser) + } + + if (options.syntax && typeof options.syntax === 'string') { + options.syntax = require(options.syntax) + } + + if (options.stringifier && typeof options.stringifier === 'string') { + options.stringifier = require(options.stringifier) + } + + if (options.plugins) { + delete options.plugins + } + + return options +} -- cgit v1.2.3