| 1234567891011121314151617181920212223242526272829303132333435 |
- /**
- * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- 'use strict';
- /* eslint-env node */
- const path = require( 'path' );
- const postCssImport = require( 'postcss-import' );
- const postCssNext = require( 'postcss-cssnext' );
- const cssnano = require( 'cssnano' );
- const themeImporter = require( './themeimporter' );
- module.exports = {
- plugins: [
- postCssImport(),
- themeImporter( {
- themePath: path.resolve( __dirname, 'node_modules/@ckeditor/ckeditor5-theme-lark' )
- } ),
- postCssNext( {
- // features: {
- // customProperties: {
- // variables: {
- // fg: "red",
- // bg: "green",
- // foo: "#456"
- // }
- // }
- // }
- } ),
- // cssnano( { autoprefixer: false } )
- ]
- };
|