Sha256: 53ee8eef68a988068e418fb07be9ba01bcd907feb03717a00861b11dd31c532b

Contents?: true

Size: 1.57 KB

Versions: 24

Compression:

Stored size: 1.57 KB

Contents

"use strict";
const path = require("path");
const patched = {};

function isPromise (obj) {
	return typeof obj === "object" && typeof obj.then === "function";
}

function runDocument (plugin) {
	const result = this.result;
	result.lastPlugin = plugin;
	const promise = result.root.nodes.map(root => {
		try {
			return plugin(root, result);
		} catch (error) {
			this.handleError(error, plugin);
			throw error;
		}
	});
	if (promise.some(isPromise)) {
		return Promise.all(promise);
	}
}

function patchDocument (Document, LazyResult) {
	LazyResult = LazyResult.prototype;
	const runRoot = LazyResult.run;

	LazyResult.run = function run () {
		return (this.result.root instanceof Document ? runDocument : runRoot).apply(this, arguments);
	};
}

function patchNode (Node) {
	Node = Node.prototype;
	const NodeToString = Node.toString;
	Node.toString = function toString (stringifier) {
		return NodeToString.call(this, stringifier || this.root().source.syntax);
	};
}

function patch (Document) {
	let fn;
	let file;
	if (Document) {
		patch();
		fn = patchDocument.bind(this, Document);
		file = "lazy-result";
	} else {
		fn = patchNode;
		file = "node";
	}
	findPostcss().map(dir => (
		[dir + "lib", file].join(path.sep)
	)).filter(file => (
		!patched[file]
	)).forEach(file => {
		try {
			fn(require(file));
		} catch (ex) {
			//
		}
		patched[file] = true;
	});
}

function findPostcss () {
	const result = {};
	for (const file in require.cache) {
		if (/^(.+?(\\|\/))postcss(\2)/.test(file)) {
			result[RegExp.lastMatch] = true;
		}
	}
	return Object.keys(result);
}

module.exports = patch;

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
trusty-cms-6.3.1 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-5.0.7 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-5.0.6 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-5.0.5 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-5.0.4 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-5.0.3 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-5.0.2 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-5.0.1 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-4.3.5 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-5.0.0 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-4.3.4 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-4.3.3 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-4.3.2 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-4.3.1 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-4.3 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-4.2.3 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-4.2.2 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-4.2.1 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-4.2 node_modules/postcss-syntax/patch-postcss.js
trusty-cms-4.1.9 node_modules/postcss-syntax/patch-postcss.js