123456789101112131415161718 |
- #!/usr/bin/env bash
- ASSETS_JS_DIR="wowchemy/assets/js/_vendor/"
- ASSETS_SCSS_DIR="wowchemy/assets/scss/_vendor/"
- mkdir -p $ASSETS_SCSS_DIR/bootstrap/
- cp node_modules/bootstrap/dist/js/bootstrap.bundle.min.js $ASSETS_JS_DIR
- cp -r node_modules/bootstrap/scss/* $ASSETS_SCSS_DIR/bootstrap/
|