0.1.0 • Published 7 years ago

systemjs-plugin-stylus v0.1.0

Weekly downloads
7
License
-
Repository
-
Last release
7 years ago

Installation

With jspm:

jspm install stylus

Usage

SystemJS.config({
  meta: {
    '*.styl': { loader: 'stylus' }
  }
});

Or via package configuration:

SystemJS.config({
  packages: {
    'src/': {
      meta: {
        '*.styl': { loader: 'stylus' }
      }
    }
  }
});

In-browser Stylus transpilation and builds should then be provided for any *.styl files.

Source maps support is included.

This plugin is built on the CSS plugin base and supports the same build options.

License

MIT