Created
January 24, 2016 09:50
-
-
Save softwarejc/96aef6bf6299429c3259 to your computer and use it in GitHub Desktop.
This file contains 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
/// <binding Clean='clean, bundle' /> | |
var gulp = require('gulp'); | |
var del = require('del'); | |
var concat = require("gulp-concat"); | |
var rename = require("gulp-rename"); | |
var uglify = require("gulp-uglify"); | |
var concatCss = require("gulp-concat-css"); | |
var config = { | |
scriptsPath: "./wwwroot/scripts/", | |
cssPath: "./wwwroot/css/", | |
depsFiles: [ | |
"./node_modules/systemjs/dist/system.src.js", | |
"./node_modules/es6-shim/es6-shim.js", | |
"./node_modules/rxjs/bundles/Rx.js", | |
"./node_modules/angular2/bundles/angular2.dev.js", | |
"./node_modules/angular2/bundles/http.js", | |
"./node_modules/angular2/bundles/angular2-polyfills.js" | |
], | |
cssFiles: [ | |
"./node_modules/bootstrap/dist/css/bootstrap.min.css" | |
] | |
}; | |
// Bundle js and css | |
gulp.task('bundle', ['bundle:js', 'bundle:css']); | |
// Bundle js files | |
gulp.task('bundle:js', function () { | |
return gulp.src(config.depsFiles) | |
.pipe(concat("deps.js")) | |
.pipe(gulp.dest(config.scriptsPath)) | |
.pipe(rename("deps.min.js")) | |
.pipe(uglify()) | |
.pipe(gulp.dest(config.scriptsPath)); | |
}); | |
// Bundle css files | |
gulp.task('bundle:css', function () { | |
return gulp.src(config.cssFiles) | |
.pipe(concatCss("styles.css")) | |
.pipe(gulp.dest(config.cssPath)); | |
}); | |
// Clean up copied scripts and generated js files | |
gulp.task("clean", function () { | |
return del([ | |
config.scriptsPath, | |
config.cssPath | |
]); | |
}); | |
// The default task (called when you run `gulp` from cli) | |
gulp.task("default", ["bundle"]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment