Skip to content

Instantly share code, notes, and snippets.

@wshaddix
Last active November 25, 2015 03:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wshaddix/d905c99f648a8b44f209 to your computer and use it in GitHub Desktop.
Save wshaddix/d905c99f648a8b44f209 to your computer and use it in GitHub Desktop.
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