1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/IdentityServer/gulpfile.js
2020-06-23 00:35:07 -07:00

132 lines
3.9 KiB
JavaScript

/// <binding ProjectOpened='watch' />
"use strict";
var gulp = require('gulp');
var rimraf = require("rimraf");
var concat = require("gulp-concat");
var cssmin = require("gulp-cssmin");
var merge = require('merge-stream');
var del = require("del");
var replace = require("gulp-replace");
var rename = require("gulp-rename");
var git = require("git-rev-sync");
var uglifyes = require('uglify-es');
var composer = require('gulp-uglify/composer');
var uglify = composer(uglifyes, console);
var bundleconfig = require("./bundleconfig.json");
var regex = {
css: /\.css$/,
html: /\.(html|htm)$/,
js: /\.js$/
};
var assets = [
// Library JS Files
{ './node_modules/bootstrap/dist/js/bootstrap.js': 'lib/bootstrap/js' },
{ './node_modules/jquery/dist/jquery.js': 'lib/jquery/js' },
{ './node_modules/jquery-validation/dist/jquery.validate.js': 'lib/jquery/js' },
// App JS Files
{ './Scripts/**/*': 'js/app' },
// Library CSS Files
{ './node_modules/bootstrap/dist/css/bootstrap.css': 'lib/bootstrap/css' },
{ './node_modules/bootstrap/dist/css/bootstrap.css.map': 'lib/bootstrap/css' },
{ './node_modules/awesome-bootstrap-checkbox/awesome-bootstrap-checkbox.css': 'lib/awesome-bootstrap-checkbox/css' },
{ './node_modules/font-awesome/css/font-awesome.css': 'lib/font-awesome/css' },
// App CSS Files
{ './Content/**/*': 'css/app' },
// Fonts
{ './node_modules/bootstrap/dist/fonts/*': 'lib/bootstrap/fonts' },
{ './node_modules/bootstrap/dist/fonts/*': 'fonts' },
{ './node_modules/font-awesome/fonts/*': 'lib/font-awesome/fonts' },
{ './node_modules/font-awesome/fonts/*': 'fonts' },
// Images
{ './Images/favicon.ico': 'images' },
{ './Images/logo-black.svg': 'images' },
{ './Images/logo-blue.svg': 'images' }
];
gulp.task("clean", function (cb) {
return rimraf("./wwwroot/*", cb);
});
gulp.task('copy-assets', function (done) {
var streams = [];
for (var asset in assets) {
for (var item in assets[asset]) {
streams.push(gulp.src(item).pipe(gulp.dest('./wwwroot/' + assets[asset][item])));
}
}
done();
});
gulp.task("load-bundle", function (done) {
bundleconfig = require("./bundleconfig.json");
done();
});
gulp.task("min:js", function () {
var tasks = getBundles(".js").map(function (bundle) {
return gulp.src(bundle.inputFiles, { base: "." })
.pipe(concat(bundle.outputFileName))
.pipe(uglify())
.pipe(gulp.dest("."));
});
return merge(tasks);
});
gulp.task("min:css", function () {
var tasks = getBundles(".css").map(function (bundle) {
return gulp.src(bundle.inputFiles, { base: "." })
.pipe(concat(bundle.outputFileName))
.pipe(cssmin())
.pipe(gulp.dest("."));
});
return merge(tasks);
});
gulp.task("min", gulp.parallel("min:js", "min:css"));
gulp.task("update-version", function () {
return gulp.src('./App_Data/version.template.json')
.pipe(replace('{{git_ver}}', git.tag()))
.pipe(replace('{{git_hash}}', git.long()))
.pipe(rename('version.json'))
.pipe(gulp.dest('./App_Data'));
});
gulp.task("watch", function (done) {
// Watch Source Files
assets.forEach(function (src) {
for (var key in src) {
gulp.watch(key, gulp.parallel("copy-assets"));
}
});
// Watch Bundle File Itself
gulp.watch('./bundleconfig.json', gulp.series("load-bundle", "min"));
// Watch Bundles
getBundles(".js").forEach(function (bundle) {
gulp.watch(bundle.inputFiles, gulp.parallel("min:js"));
});
getBundles(".css").forEach(function (bundle) {
gulp.watch(bundle.inputFiles, gulp.parallel("min:css"));
});
done();
});
function getBundles(extension) {
return bundleconfig.filter(function (bundle) {
return new RegExp(`${extension}$`).test(bundle.outputFileName);
});
}