Skip to content

Instantly share code, notes, and snippets.

@troutacular
Last active October 27, 2015 20:10
Show Gist options
  • Select an option

  • Save troutacular/f083fa913427044631ce to your computer and use it in GitHub Desktop.

Select an option

Save troutacular/f083fa913427044631ce to your computer and use it in GitHub Desktop.
Gulp Directory Structure Options
# 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