1.0.0 • Published 6 years ago

systemjs-plugin-cssnext v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

Installation

npm install systemjs-plugin-cssnext

Usage

SystemJS.config({
  map: {
    css: 'node_modules/systemjs-plugin-css',
    'plugin-cssnext': 'node_modules/systemjs-plugin-cssnext/index.js',
    postcss: 'node_modules/systemjs-plugin-cssnext/postcss.js',
    'postcss-cssnext': 'node_modules/systemjs-plugin-cssnext/postcss-cssnext.js'
  },

  meta: {
    '*.css': {
      loader: 'plugin-cssnext',

      loaderOptions: {
        // cssnext features config
        features: {
          customProperties: false,
          calc: false
        }
      }
    }
  }
})

cssnext features configuration help can be found at http://cssnext.io/usage/