localvoid / autoprefixer_transformer

Dart `pub` transformer that parses css and adds vendor prefixes to CSS rules
BSD 2-Clause "Simplified" License
2 stars 1 forks source link

Add an autoprefixer_path argument to override where the binary is #1

Closed hjfreyer closed 9 years ago

hjfreyer commented 9 years ago

My particular use case here is to install autoprefixer in node_modules, and not require that the user has the binary on their $PATH.

localvoid commented 9 years ago

Uploaded new version to the pub.

Added new option executable to set path to the autoprefixer.

- autoprefixer_transformer:
    executable: /home/void/.npm-packages/bin/autoprefixer
    browsers:
    - "> 1%"
hjfreyer commented 9 years ago

Thanks for the quick fix!