@bb-cli/bb-build-plugin-sass-autoprefixerdeprecated

Sass/autoprefixer/css plugin for BB Config

Usage no npm install needed!

<script type="module">
  import bbCliBbBuildPluginSassAutoprefixer from 'https://cdn.skypack.dev/@bb-cli/bb-build-plugin-sass-autoprefixer';
</script>

README

BB-BUILD sass-autoprefixer

Provides sass compilation with autoprefixer BB CLI build tools (bb-serve, bb-build, bb-package).

Install alongside bb-package, bb-serve, or bb-build (prefer global)

npm i -g @bb-cli/bb-build-plugin-sass-autoprefixer

Usage

bb-serve project --build-plugins @bb-cli/bb-build-plugin-sass-autoprefixer
# OR
bb-serve project --build-plugins sass-autoprefixer

Make Alias

Add to your ~/.bash_profile or ~/.zshrc (etc):

# bash
echo "alias serve='bb-serve project --build-plugins sass-autoprefixer'" >> ~/.bash_profile && source ~/.bash_profile

# zsh
echo "alias serve='bb-serve project --build-plugins sass-autoprefixer'" >> ~/.zshrc && source ~/.zshrc

And enjoy:

serve