Last active
June 24, 2019 10:19
-
-
Save bartcis/b987902cc2b7254f60300e8b7766e35b to your computer and use it in GitHub Desktop.
Example project configuration file for gulpfile.js
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
| 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