narwin-pack
v1.1.2
Published
A collection of PostCSS plugins DockYard uses in our projects
Downloads
5
Readme
Narwin Pack
A collection of PostCSS plugins DockYard uses in our projects.
Installation
$npm install --save-dev narwin-pack
Example for an Ember app, add the following into ember-cli-build.js
:
$npm install --save-dev ember-cli-postcss
module.exports = function(defaults) {
var app = new EmberApp(defaults, {
postcssOptions: {
compile: {
plugins: [
{
module: require('narwin-pack'),
options: {
// Add your custom plugin options here
}
}
]
}
}
});
return app.toTree();
};
Using plugins
- postcss-partial-import,
- postcss-nested,
- postcss-custom-properties,
- postcss-inline-svg,
- postcss-svgo,
- autoprefixer,
- postcss-hexrgba
- postcss-discard-comments
Legal
DockYard, Inc © 2017