-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
usage #1
Comments
@konsumer You can use the latest release (v0.3.0) the same way with sassify. |
Sweet. Thanks! |
It would be even sweeter with an example in the readme ;) |
Install$ npm install --save-dev browserify-postcss CLI$ browserify script.js -o bundle.js -t [ browserify-postcss --inject ] Config"browserify": {
"transform": [
[
"browserify-postcss",
{
"plugin": [
"postcss-import",
"postcss-advanced-variables"
],
"inject": true
}
]
]
}, Although I havent tested it yet 🐹 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How do I use this as a browserify transform?
I currently have a package.json that looks like this:
this works great for my current project, allowing me to require scss files, etc.
The text was updated successfully, but these errors were encountered: