Last active
October 27, 2015 20:10
-
-
Save troutacular/f083fa913427044631ce to your computer and use it in GitHub Desktop.
Gulp Directory Structure Options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Option 1 | |
| public/ | |
| src/ | |
| index.html | |
| img/ | |
| js/ | |
| app.js | |
| scss/ | |
| dist/ | |
| index.html | |
| img/ | |
| js/ | |
| app.min.js | |
| css/ | |
| lib/ | |
| vanilla.js | |
| fancybox.js | |
| gulpfile.js | |
| package.json | |
| # Option 2 | |
| ========== | |
| assets/ (public files) | |
| img/ | |
| js/ | |
| app.min.js | |
| css/ | |
| src/ | |
| img/ | |
| js/ | |
| app.js | |
| sass/ | |
| vendor/ | |
| vanilla.js | |
| fancybox.js | |
| gulpfile.js | |
| package.json | |
| # Option 3 | |
| ========== | |
| assets/ (public files) | |
| img/ | |
| js/ | |
| app.min.js | |
| vendor/ | |
| vanilla.min.js | |
| fancybox.min.js | |
| css/ | |
| src/ | |
| img/ | |
| js/ | |
| app.js | |
| vendor/ | |
| vanilla.js | |
| fancybox.js | |
| sass/ | |
| gulpfile.js | |
| package.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment