Skip to content

Instantly share code, notes, and snippets.

@bartcis
Last active June 24, 2019 10:19
Show Gist options
  • Select an option

  • Save bartcis/b987902cc2b7254f60300e8b7766e35b to your computer and use it in GitHub Desktop.

Select an option

Save bartcis/b987902cc2b7254f60300e8b7766e35b to your computer and use it in GitHub Desktop.
Example project configuration file for gulpfile.js
const config = {
app: {
js: [
'./src/scripts/**/*.js',
],
scss: './src/style/**/*.scss',
fonts: './src/fonts/*',
images: './src/images/*.*',
html: './src/*.html'
},
dist: {
base: './dist/',
fonts: './dist/fonts',
images: './dist/images'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment