24 lines
834 B
JavaScript
24 lines
834 B
JavaScript
import project from '../aurelia.json';
|
|
import rename from 'gulp-rename';
|
|
import {CLIOptions} from 'aurelia-cli';
|
|
import gulp from 'gulp';
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
import through from 'through2';
|
|
|
|
function configureEnvironment() {
|
|
let env = CLIOptions.getEnvironment();
|
|
|
|
return gulp.src(`aurelia_project/environments/${env}${project.transpiler.fileExtension}`)
|
|
.pipe(rename(`environment${project.transpiler.fileExtension}`))
|
|
.pipe(gulp.dest(project.paths.root))
|
|
.pipe(through.obj(function (file, enc, cb) {
|
|
// https://github.com/webpack/watchpack/issues/25#issuecomment-287789288
|
|
var now = Date.now() / 1000;
|
|
var then = now - 10;
|
|
fs.utimes(file.path, then, then, function (err) { if (err) throw err });
|
|
cb(null, file);
|
|
}));
|
|
}
|
|
|
|
export default configureEnvironment; |