Skip to content

Instantly share code, notes, and snippets.

@tlhunter
Last active February 26, 2019 02:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tlhunter/fde0f37161660214491bc4af59407d7f to your computer and use it in GitHub Desktop.
Save tlhunter/fde0f37161660214491bc4af59407d7f to your computer and use it in GitHub Desktop.
LogRocket > Node.js Task Runners: Are they right for you?
### style.sh
#!/usr/bin/env bash
cat ./src/styles/*.scss | sass > ./public/dist.css
### script.sh
#!/usr/bin/env bash
cat ./src/scripts/*.js > ./public/dist.js
### build.sh
#!/usr/bin/env bash
./style.sh
./script.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment