rollup-plugin-stylus
Version:
[DEPRECATED]
29 lines (28 loc) • 503 B
JavaScript
module.exports = {
entry: 'src/index.js',
plugins: [
require('rollup-plugin-babel')({
runtimeHelpers: true,
}),
],
external: [
'fs',
'path',
'stylus',
'rollup-pluginutils',
'css-modules-loader-core',
'babel-runtime/core-js/json/stringify',
'babel-runtime/helpers/asyncToGenerator',
'babel-runtime/regenerator',
],
targets: [
{
dest: 'lib/rollup-plugin-stylus.cjs.js',
format: 'cjs',
},
{
dest: 'lib/rollup-plugin-stylus.es.js',
format: 'es',
}
],
}