Created
October 1, 2017 02:07
-
-
Save freshcutdevelopment/de28221da0d38386d32832733bdaedf5 to your computer and use it in GitHub Desktop.
Copy the flags into the root of the Aurelia project
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
import gulp from 'gulp'; | |
import project from '../aurelia.json'; | |
export default function copyFlags() { | |
console.log("copying flags"); | |
return gulp.src(project.paths.flagsInput) | |
.pipe(gulp.dest(project.paths.flagsOutput)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment