per-environment-configuration-in-aurelia
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
var gulp = require('gulp'); | |
var runSequence = require('run-sequence'); | |
var changed = require('gulp-changed'); | |
var plumber = require('gulp-plumber'); | |
var to5 = require('gulp-babel'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var paths = require('../paths'); | |
var compilerOptions = require('../babel-options'); | |
var assign = Object.assign || require('object.assign'); | |
var notify = require("gulp-notify"); | |
var rename = require('gulp-rename'); | |
// transpiles changed es6 files to SystemJS format | |
// the plumber() call prevents 'pipe breaking' caused | |
// by errors from other gulp plugins | |
// https://www.npmjs.com/package/gulp-plumber | |
gulp.task('build-system', function () { | |
return gulp.src(paths.source) | |
.pipe(plumber({errorHandler: notify.onError("Error: <%= error.message %>")})) | |
.pipe(changed(paths.output, {extension: '.js'})) | |
.pipe(sourcemaps.init({loadMaps: true})) | |
.pipe(to5(assign({}, compilerOptions, {modules:'system'}))) | |
.pipe(sourcemaps.write({includeContent: true})) | |
.pipe(gulp.dest(paths.output)); | |
}); | |
// builds environment configurations | |
gulp.task('build-environment', function () { | |
return gulp.src('environments/' + (process.env.APP_ENV || 'production') + '.js') | |
.pipe(plumber({errorHandler: notify.onError("Error: <%= error.message %>")})) | |
.pipe(changed(paths.output, {extension: '.js'})) | |
.pipe(rename('environment.js')) | |
.pipe(to5(assign({}, compilerOptions))) | |
.pipe(gulp.dest(paths.output)); | |
}); | |
// copies changed html files to the output directory | |
gulp.task('build-html', function () { | |
return gulp.src(paths.html) | |
.pipe(changed(paths.output, {extension: '.html'})) | |
.pipe(gulp.dest(paths.output)); | |
}); | |
// copies changed css files to the output directory | |
gulp.task('build-css', function () { | |
return gulp.src(paths.css) | |
.pipe(changed(paths.output, {extension: '.css'})) | |
.pipe(gulp.dest(paths.output)); | |
}); | |
// this task calls the clean task (located | |
// in ./clean.js), then runs the build-system | |
// and build-html tasks in parallel | |
// https://www.npmjs.com/package/gulp-run-sequence | |
gulp.task('build', function(callback) { | |
return runSequence( | |
'clean', | |
['build-system', 'build-environment', 'build-html', 'build-css'], | |
callback | |
); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
can any one shed some light on why is it really necessary to use gulp-changed plugin? isn't gulp.watch enough?