Skip to content

Instantly share code, notes, and snippets.

Created August 23, 2016 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/fe7277e6d4ebd03fa5c2cfceb4cb2ce9 to your computer and use it in GitHub Desktop.
Save anonymous/fe7277e6d4ebd03fa5c2cfceb4cb2ce9 to your computer and use it in GitHub Desktop.
Run build sequence for Sage based WordPress theme from theme dir.
#!/bin/bash
# Initiating Digimix theme setup
echo "Initiating Digimix theme setup"
# install node modules
echo "install node modules"
npm install
# install bower components
echo "installing bower components"
bower install
# compile theme with gulp
echo "compiling theme with gulp"
gulp
echo "Digimix theme setup complete"
# Digimix theme setup complete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment