added autoprefixer cli style tooling

This commit is contained in:
z3rOR0ne 2023-02-05 03:44:31 -08:00
parent b72aff9eb8
commit 2e5589adde
2 changed files with 7 additions and 0 deletions

View file

@ -225,6 +225,10 @@ alias duuid="dbus-uuidgen"
# generate unique ids from cli, example for no special characters:
alias manoid="nanoid --alphabet 'abcdefghijklmnopqrstuvwxyz' --size 40"
alias nanoid="npx nanoid"
# autoprefixes css files
# requires installation:
# npm install -g postcss postcss-cli autoprefixer
alias autoprefixer="npx postcss *.css --use autoprefixer -d build/"
# informs on dependency updates
alias taze="npx taze"
alias pip_upgrade="python -m pip install --upgrade pip"

View file

@ -209,3 +209,6 @@ paru xidel(1st option)
Install foliate (epub book reader)
doas pacman -S foliate
Install autoprefixer for css files:
npm install -g postcss postcss-cli autoprefixer