Last active
November 25, 2015 03:10
-
-
Save wshaddix/d905c99f648a8b44f209 to your computer and use it in GitHub Desktop.
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
var gulp = require('gulp'); | |
var paths = require('../paths'); | |
gulp.task('package', ['build'], function(callback){ | |
return gulp.src(['dist/**/*', 'styles/**/*', 'jspm_packages/**/*', 'index.html', 'config.js', 'web.config'], {base: '.'}) | |
.pipe(gulp.dest(paths.wwwroot)); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment