You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
445 lines
35 KiB
445 lines
35 KiB
4 years ago
|
"use strict";
|
||
|
|
||
|
exports.__esModule = true;
|
||
|
exports.default = void 0;
|
||
|
|
||
|
var _mapGenerator = _interopRequireDefault(require("./map-generator"));
|
||
|
|
||
|
var _stringify2 = _interopRequireDefault(require("./stringify"));
|
||
|
|
||
|
var _warnOnce = _interopRequireDefault(require("./warn-once"));
|
||
|
|
||
|
var _result = _interopRequireDefault(require("./result"));
|
||
|
|
||
|
var _parse = _interopRequireDefault(require("./parse"));
|
||
|
|
||
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||
|
|
||
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||
|
|
||
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||
|
|
||
|
function isPromise(obj) {
|
||
|
return typeof obj === 'object' && typeof obj.then === 'function';
|
||
|
}
|
||
|
/**
|
||
|
* A Promise proxy for the result of PostCSS transformations.
|
||
|
*
|
||
|
* A `LazyResult` instance is returned by {@link Processor#process}.
|
||
|
*
|
||
|
* @example
|
||
|
* const lazy = postcss([autoprefixer]).process(css)
|
||
|
*/
|
||
|
|
||
|
|
||
|
var LazyResult =
|
||
|
/*#__PURE__*/
|
||
|
function () {
|
||
|
function LazyResult(processor, css, opts) {
|
||
|
this.stringified = false;
|
||
|
this.processed = false;
|
||
|
var root;
|
||
|
|
||
|
if (typeof css === 'object' && css !== null && css.type === 'root') {
|
||
|
root = css;
|
||
|
} else if (css instanceof LazyResult || css instanceof _result.default) {
|
||
|
root = css.root;
|
||
|
|
||
|
if (css.map) {
|
||
|
if (typeof opts.map === 'undefined') opts.map = {};
|
||
|
if (!opts.map.inline) opts.map.inline = false;
|
||
|
opts.map.prev = css.map;
|
||
|
}
|
||
|
} else {
|
||
|
var parser = _parse.default;
|
||
|
if (opts.syntax) parser = opts.syntax.parse;
|
||
|
if (opts.parser) parser = opts.parser;
|
||
|
if (parser.parse) parser = parser.parse;
|
||
|
|
||
|
try {
|
||
|
root = parser(css, opts);
|
||
|
} catch (error) {
|
||
|
this.error = error;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
this.result = new _result.default(processor, root, opts);
|
||
|
}
|
||
|
/**
|
||
|
* Returns a {@link Processor} instance, which will be used
|
||
|
* for CSS transformations.
|
||
|
*
|
||
|
* @type {Processor}
|
||
|
*/
|
||
|
|
||
|
|
||
|
var _proto = LazyResult.prototype;
|
||
|
|
||
|
/**
|
||
|
* Processes input CSS through synchronous plugins
|
||
|
* and calls {@link Result#warnings()}.
|
||
|
*
|
||
|
* @return {Warning[]} Warnings from plugins.
|
||
|
*/
|
||
|
_proto.warnings = function warnings() {
|
||
|
return this.sync().warnings();
|
||
|
}
|
||
|
/**
|
||
|
* Alias for the {@link LazyResult#css} property.
|
||
|
*
|
||
|
* @example
|
||
|
* lazy + '' === lazy.css
|
||
|
*
|
||
|
* @return {string} Output CSS.
|
||
|
*/
|
||
|
;
|
||
|
|
||
|
_proto.toString = function toString() {
|
||
|
return this.css;
|
||
|
}
|
||
|
/**
|
||
|
* Processes input CSS through synchronous and asynchronous plugins
|
||
|
* and calls `onFulfilled` with a Result instance. If a plugin throws
|
||
|
* an error, the `onRejected` callback will be executed.
|
||
|
*
|
||
|
* It implements standard Promise API.
|
||
|
*
|
||
|
* @param {onFulfilled} onFulfilled Callback will be executed
|
||
|
* when all plugins will finish work.
|
||
|
* @param {onRejected} onRejected Callback will be executed on any error.
|
||
|
*
|
||
|
* @return {Promise} Promise API to make queue.
|
||
|
*
|
||
|
* @example
|
||
|
* postcss([autoprefixer]).process(css, { from: cssPath }).then(result => {
|
||
|
* console.log(result.css)
|
||
|
* })
|
||
|
*/
|
||
|
;
|
||
|
|
||
|
_proto.then = function then(onFulfilled, onRejected) {
|
||
|
if (process.env.NODE_ENV !== 'production') {
|
||
|
if (!('from' in this.opts)) {
|
||
|
(0, _warnOnce.default)('Without `from` option PostCSS could generate wrong source map ' + 'and will not find Browserslist config. Set it to CSS file path ' + 'or to `undefined` to prevent this warning.');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return this.async().then(onFulfilled, onRejected);
|
||
|
}
|
||
|
/**
|
||
|
* Processes input CSS through synchronous and asynchronous plugins
|
||
|
* and calls onRejected for each error thrown in any plugin.
|
||
|
*
|
||
|
* It implements standard Promise API.
|
||
|
*
|
||
|
* @param {onRejected} onRejected Callback will be executed on any error.
|
||
|
*
|
||
|
* @return {Promise} Promise API to make queue.
|
||
|
*
|
||
|
* @example
|
||
|
* postcss([autoprefixer]).process(css).then(result => {
|
||
|
* console.log(result.css)
|
||
|
* }).catch(error => {
|
||
|
* console.error(error)
|
||
|
* })
|
||
|
*/
|
||
|
;
|
||
|
|
||
|
_proto.catch = function _catch(onRejected) {
|
||
|
return this.async().catch(onRejected);
|
||
|
}
|
||
|
/**
|
||
|
* Processes input CSS through synchronous and asynchronous plugins
|
||
|
* and calls onFinally on any error or when all plugins will finish work.
|
||
|
*
|
||
|
* It implements standard Promise API.
|
||
|
*
|
||
|
* @param {onFinally} onFinally Callback will be executed on any error or
|
||
|
* when all plugins will finish work.
|
||
|
*
|
||
|
* @return {Promise} Promise API to make queue.
|
||
|
*
|
||
|
* @example
|
||
|
* postcss([autoprefixer]).process(css).finally(() => {
|
||
|
* console.log('processing ended')
|
||
|
* })
|
||
|
*/
|
||
|
;
|
||
|
|
||
|
_proto.finally = function _finally(onFinally) {
|
||
|
return this.async().then(onFinally, onFinally);
|
||
|
};
|
||
|
|
||
|
_proto.handleError = function handleError(error, plugin) {
|
||
|
try {
|
||
|
this.error = error;
|
||
|
|
||
|
if (error.name === 'CssSyntaxError' && !error.plugin) {
|
||
|
error.plugin = plugin.postcssPlugin;
|
||
|
error.setMessage();
|
||
|
} else if (plugin.postcssVersion) {
|
||
|
if (process.env.NODE_ENV !== 'production') {
|
||
|
var pluginName = plugin.postcssPlugin;
|
||
|
var pluginVer = plugin.postcssVersion;
|
||
|
var runtimeVer = this.result.processor.version;
|
||
|
var a = pluginVer.split('.');
|
||
|
var b = runtimeVer.split('.');
|
||
|
|
||
|
if (a[0] !== b[0] || parseInt(a[1]) > parseInt(b[1])) {
|
||
|
console.error('Unknown error from PostCSS plugin. Your current PostCSS ' + 'version is ' + runtimeVer + ', but ' + pluginName + ' uses ' + pluginVer + '. Perhaps this is the source of the error below.');
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
} catch (err) {
|
||
|
if (console && console.error) console.error(err);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
_proto.asyncTick = function asyncTick(resolve, reject) {
|
||
|
var _this = this;
|
||
|
|
||
|
if (this.plugin >= this.processor.plugins.length) {
|
||
|
this.processed = true;
|
||
|
return resolve();
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
var plugin = this.processor.plugins[this.plugin];
|
||
|
var promise = this.run(plugin);
|
||
|
this.plugin += 1;
|
||
|
|
||
|
if (isPromise(promise)) {
|
||
|
promise.then(function () {
|
||
|
_this.asyncTick(resolve, reject);
|
||
|
}).catch(function (error) {
|
||
|
_this.handleError(error, plugin);
|
||
|
|
||
|
_this.processed = true;
|
||
|
reject(error);
|
||
|
});
|
||
|
} else {
|
||
|
this.asyncTick(resolve, reject);
|
||
|
}
|
||
|
} catch (error) {
|
||
|
this.processed = true;
|
||
|
reject(error);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
_proto.async = function async() {
|
||
|
var _this2 = this;
|
||
|
|
||
|
if (this.processed) {
|
||
|
return new Promise(function (resolve, reject) {
|
||
|
if (_this2.error) {
|
||
|
reject(_this2.error);
|
||
|
} else {
|
||
|
resolve(_this2.stringify());
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
if (this.processing) {
|
||
|
return this.processing;
|
||
|
}
|
||
|
|
||
|
this.processing = new Promise(function (resolve, reject) {
|
||
|
if (_this2.error) return reject(_this2.error);
|
||
|
_this2.plugin = 0;
|
||
|
|
||
|
_this2.asyncTick(resolve, reject);
|
||
|
}).then(function () {
|
||
|
_this2.processed = true;
|
||
|
return _this2.stringify();
|
||
|
});
|
||
|
return this.processing;
|
||
|
};
|
||
|
|
||
|
_proto.sync = function sync() {
|
||
|
if (this.processed) return this.result;
|
||
|
this.processed = true;
|
||
|
|
||
|
if (this.processing) {
|
||
|
throw new Error('Use process(css).then(cb) to work with async plugins');
|
||
|
}
|
||
|
|
||
|
if (this.error) throw this.error;
|
||
|
|
||
|
for (var _iterator = this.result.processor.plugins, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {
|
||
|
var _ref;
|
||
|
|
||
|
if (_isArray) {
|
||
|
if (_i >= _iterator.length) break;
|
||
|
_ref = _iterator[_i++];
|
||
|
} else {
|
||
|
_i = _iterator.next();
|
||
|
if (_i.done) break;
|
||
|
_ref = _i.value;
|
||
|
}
|
||
|
|
||
|
var plugin = _ref;
|
||
|
var promise = this.run(plugin);
|
||
|
|
||
|
if (isPromise(promise)) {
|
||
|
throw new Error('Use process(css).then(cb) to work with async plugins');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return this.result;
|
||
|
};
|
||
|
|
||
|
_proto.run = function run(plugin) {
|
||
|
this.result.lastPlugin = plugin;
|
||
|
|
||
|
try {
|
||
|
return plugin(this.result.root, this.result);
|
||
|
} catch (error) {
|
||
|
this.handleError(error, plugin);
|
||
|
throw error;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
_proto.stringify = function stringify() {
|
||
|
if (this.stringified) return this.result;
|
||
|
this.stringified = true;
|
||
|
this.sync();
|
||
|
var opts = this.result.opts;
|
||
|
var str = _stringify2.default;
|
||
|
if (opts.syntax) str = opts.syntax.stringify;
|
||
|
if (opts.stringifier) str = opts.stringifier;
|
||
|
if (str.stringify) str = str.stringify;
|
||
|
var map = new _mapGenerator.default(str, this.result.root, this.result.opts);
|
||
|
var data = map.generate();
|
||
|
this.result.css = data[0];
|
||
|
this.result.map = data[1];
|
||
|
return this.result;
|
||
|
};
|
||
|
|
||
|
_createClass(LazyResult, [{
|
||
|
key: "processor",
|
||
|
get: function get() {
|
||
|
return this.result.processor;
|
||
|
}
|
||
|
/**
|
||
|
* Options from the {@link Processor#process} call.
|
||
|
*
|
||
|
* @type {processOptions}
|
||
|
*/
|
||
|
|
||
|
}, {
|
||
|
key: "opts",
|
||
|
get: function get() {
|
||
|
return this.result.opts;
|
||
|
}
|
||
|
/**
|
||
|
* Processes input CSS through synchronous plugins, converts `Root`
|
||
|
* to a CSS string and returns {@link Result#css}.
|
||
|
*
|
||
|
* This property will only work with synchronous plugins.
|
||
|
* If the processor contains any asynchronous plugins
|
||
|
* it will throw an error. This is why this method is only
|
||
|
* for debug purpose, you should always use {@link LazyResult#then}.
|
||
|
*
|
||
|
* @type {string}
|
||
|
* @see Result#css
|
||
|
*/
|
||
|
|
||
|
}, {
|
||
|
key: "css",
|
||
|
get: function get() {
|
||
|
return this.stringify().css;
|
||
|
}
|
||
|
/**
|
||
|
* An alias for the `css` property. Use it with syntaxes
|
||
|
* that generate non-CSS output.
|
||
|
*
|
||
|
* This property will only work with synchronous plugins.
|
||
|
* If the processor contains any asynchronous plugins
|
||
|
* it will throw an error. This is why this method is only
|
||
|
* for debug purpose, you should always use {@link LazyResult#then}.
|
||
|
*
|
||
|
* @type {string}
|
||
|
* @see Result#content
|
||
|
*/
|
||
|
|
||
|
}, {
|
||
|
key: "content",
|
||
|
get: function get() {
|
||
|
return this.stringify().content;
|
||
|
}
|
||
|
/**
|
||
|
* Processes input CSS through synchronous plugins
|
||
|
* and returns {@link Result#map}.
|
||
|
*
|
||
|
* This property will only work with synchronous plugins.
|
||
|
* If the processor contains any asynchronous plugins
|
||
|
* it will throw an error. This is why this method is only
|
||
|
* for debug purpose, you should always use {@link LazyResult#then}.
|
||
|
*
|
||
|
* @type {SourceMapGenerator}
|
||
|
* @see Result#map
|
||
|
*/
|
||
|
|
||
|
}, {
|
||
|
key: "map",
|
||
|
get: function get() {
|
||
|
return this.stringify().map;
|
||
|
}
|
||
|
/**
|
||
|
* Processes input CSS through synchronous plugins
|
||
|
* and returns {@link Result#root}.
|
||
|
*
|
||
|
* This property will only work with synchronous plugins. If the processor
|
||
|
* contains any asynchronous plugins it will throw an error.
|
||
|
*
|
||
|
* This is why this method is only for debug purpose,
|
||
|
* you should always use {@link LazyResult#then}.
|
||
|
*
|
||
|
* @type {Root}
|
||
|
* @see Result#root
|
||
|
*/
|
||
|
|
||
|
}, {
|
||
|
key: "root",
|
||
|
get: function get() {
|
||
|
return this.sync().root;
|
||
|
}
|
||
|
/**
|
||
|
* Processes input CSS through synchronous plugins
|
||
|
* and returns {@link Result#messages}.
|
||
|
*
|
||
|
* This property will only work with synchronous plugins. If the processor
|
||
|
* contains any asynchronous plugins it will throw an error.
|
||
|
*
|
||
|
* This is why this method is only for debug purpose,
|
||
|
* you should always use {@link LazyResult#then}.
|
||
|
*
|
||
|
* @type {Message[]}
|
||
|
* @see Result#messages
|
||
|
*/
|
||
|
|
||
|
}, {
|
||
|
key: "messages",
|
||
|
get: function get() {
|
||
|
return this.sync().messages;
|
||
|
}
|
||
|
}]);
|
||
|
|
||
|
return LazyResult;
|
||
|
}();
|
||
|
|
||
|
var _default = LazyResult;
|
||
|
/**
|
||
|
* @callback onFulfilled
|
||
|
* @param {Result} result
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @callback onRejected
|
||
|
* @param {Error} error
|
||
|
*/
|
||
|
|
||
|
exports.default = _default;
|
||
|
module.exports = exports.default;
|
||
|
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImxhenktcmVzdWx0LmVzNiJdLCJuYW1lcyI6WyJpc1Byb21pc2UiLCJvYmoiLCJ0aGVuIiwiTGF6eVJlc3VsdCIsInByb2Nlc3NvciIsImNzcyIsIm9wdHMiLCJzdHJpbmdpZmllZCIsInByb2Nlc3NlZCIsInJvb3QiLCJ0eXBlIiwiUmVzdWx0IiwibWFwIiwiaW5saW5lIiwicHJldiIsInBhcnNlciIsInBhcnNlIiwic3ludGF4IiwiZXJyb3IiLCJyZXN1bHQiLCJ3YXJuaW5ncyIsInN5bmMiLCJ0b1N0cmluZyIsIm9uRnVsZmlsbGVkIiwib25SZWplY3RlZCIsInByb2Nlc3MiLCJlbnYiLCJOT0RFX0VOViIsImFzeW5jIiwiY2F0Y2giLCJmaW5hbGx5Iiwib25GaW5hbGx5IiwiaGFuZGxlRXJyb3IiLCJwbHVnaW4iLCJuYW1lIiwicG9zdGNzc1BsdWdpbiIsInNldE1lc3NhZ2UiLCJwb3N0Y3NzVmVyc2lvbiIsInBsdWdpbk5hbWUiLCJwbHVnaW5WZXIiLCJydW50aW1lVmVyIiwidmVyc2lvbiIsImEiLCJzcGxpdCIsImIiLCJwYXJzZUludCIsImNvbnNvbGUiLCJlcnIiLCJhc3luY1RpY2siLCJyZXNvbHZlIiwicmVqZWN0IiwicGx1Z2lucyIsImxlbmd0aCIsInByb21pc2UiLCJydW4iLCJQcm9taXNlIiwic3RyaW5naWZ5IiwicHJvY2Vzc2luZyIsIkVycm9yIiwibGFzdFBsdWdpbiIsInN0ciIsInN0cmluZ2lmaWVyIiwiTWFwR2VuZXJhdG9yIiwiZGF0YSIsImdlbmVyYXRlIiwiY29udGVudCIsIm1lc3NhZ2VzIl0sIm1hcHBpbmdzIjoiOzs7OztBQUFBOztBQUNBOztBQUNBOztBQUNBOztBQUNBOzs7Ozs7OztBQUVBLFNBQVNBLFNBQVQsQ0FBb0JDLEdBQXBCLEVBQXlCO0FBQ3ZCLFNBQU8sT0FBT0EsR0FBUCxLQUFlLFFBQWYsSUFBMkIsT0FBT0EsR0FBRyxDQUFDQyxJQUFYLEtBQW9CLFVBQXREO0FBQ0Q7QUFFRDs7Ozs7Ozs7OztJQVFNQyxV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
|