Your IP : 216.73.217.169


Current Path : /home/kamilrogam/komp/2018/180513/DARWIN/EDU/sass/1 — kopia/node_modules/gulp-autoprefixer/
Upload File :
Current File : /home/kamilrogam/komp/2018/180513/DARWIN/EDU/sass/1 — kopia/node_modules/gulp-autoprefixer/index.js

'use strict';
const fancyLog = require('fancy-log');
const PluginError = require('plugin-error');
const through = require('through2');
const applySourceMap = require('vinyl-sourcemaps-apply');
const autoprefixer = require('autoprefixer');
const postcss = require('postcss');

module.exports = opts => {
	return through.obj((file, enc, cb) => {
		if (file.isNull()) {
			cb(null, file);
			return;
		}

		if (file.isStream()) {
			cb(new PluginError('gulp-autoprefixer', 'Streaming not supported'));
			return;
		}

		postcss(autoprefixer(opts)).process(file.contents.toString(), {
			map: file.sourceMap ? {annotation: false} : false,
			from: file.path,
			to: file.path
		}).then(res => {
			file.contents = Buffer.from(res.css);

			if (res.map && file.sourceMap) {
				const map = res.map.toJSON();
				map.file = file.relative;
				map.sources = map.sources.map(() => file.relative);
				applySourceMap(file, map);
			}

			const warnings = res.warnings();

			if (warnings.length > 0) {
				fancyLog('gulp-autoprefixer:', '\n  ' + warnings.join('\n  '));
			}

			setImmediate(cb, null, file);
		}).catch(err => {
			const cssError = err.name === 'CssSyntaxError';

			if (cssError) {
				err.message += err.showSourceCode();
			}

			// Prevent stream unhandled exception from being suppressed by Promise
			setImmediate(cb, new PluginError('gulp-autoprefixer', err, {
				fileName: file.path,
				showStack: !cssError
			}));
		});
	});
};