2015-12-09 04:35:05 +01:00
|
|
|
/// <binding BeforeBuild='build, dist' Clean='clean' ProjectOpened='build. dist' />
|
|
|
|
|
|
|
|
var gulp = require('gulp'),
|
|
|
|
rimraf = require('rimraf'),
|
|
|
|
concat = require('gulp-concat'),
|
|
|
|
rename = require('gulp-rename'),
|
|
|
|
cssmin = require('gulp-cssmin'),
|
|
|
|
uglify = require('gulp-uglify'),
|
|
|
|
ghPages = require('gulp-gh-pages'),
|
|
|
|
less = require('gulp-less'),
|
2016-12-01 05:30:08 +01:00
|
|
|
connect = require('gulp-connect'),
|
2015-12-09 04:35:05 +01:00
|
|
|
ngAnnotate = require('gulp-ng-annotate'),
|
|
|
|
preprocess = require('gulp-preprocess'),
|
|
|
|
runSequence = require('run-sequence'),
|
|
|
|
merge = require('merge-stream'),
|
|
|
|
ngConfig = require('gulp-ng-config'),
|
|
|
|
settings = require('./settings.json'),
|
2016-12-01 05:50:00 +01:00
|
|
|
project = require('./package.json'),
|
2015-12-09 04:35:05 +01:00
|
|
|
jshint = require('gulp-jshint'),
|
2017-02-11 19:03:48 +01:00
|
|
|
_ = require('lodash'),
|
|
|
|
webpack = require('webpack-stream');
|
2015-12-09 04:35:05 +01:00
|
|
|
|
|
|
|
var paths = {};
|
2016-12-01 05:50:00 +01:00
|
|
|
paths.dist = './dist/';
|
|
|
|
paths.webroot = './src/'
|
2015-12-09 04:35:05 +01:00
|
|
|
paths.js = paths.webroot + 'js/**/*.js';
|
|
|
|
paths.minJs = paths.webroot + 'js/**/*.min.js';
|
|
|
|
paths.concatJsDest = paths.webroot + 'js/bw.min.js';
|
|
|
|
paths.libDir = paths.webroot + 'lib/';
|
|
|
|
paths.npmDir = 'node_modules/';
|
2016-12-01 05:50:00 +01:00
|
|
|
paths.lessDir = paths.webroot + 'less/';
|
2015-12-09 04:35:05 +01:00
|
|
|
paths.cssDir = paths.webroot + 'css/';
|
|
|
|
paths.jsDir = paths.webroot + 'js/';
|
|
|
|
|
2016-10-14 01:57:56 +02:00
|
|
|
var randomString = Math.random().toString(36).substring(7);
|
|
|
|
|
2015-12-09 04:35:05 +01:00
|
|
|
gulp.task('lint', function () {
|
|
|
|
return gulp.src(paths.webroot + 'app/**/*.js')
|
|
|
|
.pipe(jshint())
|
|
|
|
.pipe(jshint.reporter('default'));
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('build', function (cb) {
|
|
|
|
return runSequence(
|
|
|
|
'clean',
|
2017-02-11 19:03:48 +01:00
|
|
|
['lib', 'webpack', 'less', 'settings', 'lint'],
|
2015-12-09 04:35:05 +01:00
|
|
|
cb);
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('clean:js', function (cb) {
|
|
|
|
return rimraf(paths.concatJsDest, cb);
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('clean:css', function (cb) {
|
|
|
|
return rimraf(paths.cssDir, cb);
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('clean:lib', function (cb) {
|
|
|
|
return rimraf(paths.libDir, cb);
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('clean', ['clean:js', 'clean:css', 'clean:lib', 'dist:clean']);
|
|
|
|
|
|
|
|
gulp.task('min:js', ['clean:js'], function () {
|
|
|
|
return gulp.src([paths.js, '!' + paths.minJs], { base: '.' })
|
|
|
|
.pipe(concat(paths.concatJsDest))
|
|
|
|
.pipe(uglify())
|
|
|
|
.pipe(gulp.dest('.'));
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('min:css', [], function () {
|
|
|
|
return gulp.src([paths.cssDir + '**/*.css', '!' + paths.cssDir + '**/*.min.css'], { base: '.' })
|
|
|
|
.pipe(cssmin())
|
|
|
|
.pipe(rename({ suffix: '.min' }))
|
|
|
|
.pipe(gulp.dest('.'));
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('min', ['min:js', 'min:css']);
|
|
|
|
|
|
|
|
gulp.task('lib', ['clean:lib'], function () {
|
|
|
|
var libs = [
|
|
|
|
{
|
|
|
|
src: [
|
|
|
|
paths.npmDir + 'bootstrap/dist/**/*',
|
|
|
|
'!' + paths.npmDir + 'bootstrap/dist/**/npm.js',
|
|
|
|
'!' + paths.npmDir + 'bootstrap/dist/**/css/*theme*'
|
|
|
|
],
|
|
|
|
dest: paths.libDir + 'bootstrap'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'font-awesome/css/*',
|
|
|
|
dest: paths.libDir + 'font-awesome/css'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'font-awesome/fonts/*',
|
|
|
|
dest: paths.libDir + 'font-awesome/fonts'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'jquery/dist/*.js',
|
|
|
|
dest: paths.libDir + 'jquery'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'admin-lte/dist/js/app*.js',
|
|
|
|
dest: paths.libDir + 'admin-lte/js'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'angular/angular*.js',
|
|
|
|
dest: paths.libDir + 'angular'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'angular-bootstrap-npm/dist/*tpls*.js',
|
|
|
|
dest: paths.libDir + 'angular-bootstrap'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'angular-bootstrap-show-errors/src/*.js',
|
|
|
|
dest: paths.libDir + 'angular-bootstrap-show-errors'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'angular-cookies/*cookies*.js',
|
|
|
|
dest: paths.libDir + 'angular-cookies'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'angular-jwt/dist/*.js',
|
|
|
|
dest: paths.libDir + 'angular-jwt'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'angular-md5/angular-md5*.js',
|
|
|
|
dest: paths.libDir + 'angular-md5'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'angular-resource/*resource*.js',
|
|
|
|
dest: paths.libDir + 'angular-resource'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: [paths.npmDir + 'angular-toastr/dist/**/*.css', paths.npmDir + 'angular-toastr/dist/**/*.js'],
|
|
|
|
dest: paths.libDir + 'angular-toastr'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'angular-ui-router/release/*.js',
|
|
|
|
dest: paths.libDir + 'angular-ui-router'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'angular-messages/*messages*.js',
|
|
|
|
dest: paths.libDir + 'angular-messages'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'ngstorage/*.js',
|
|
|
|
dest: paths.libDir + 'ngstorage'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'papaparse/papaparse*.js',
|
|
|
|
dest: paths.libDir + 'papaparse'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'ngclipboard/dist/ngclipboard*.js',
|
|
|
|
dest: paths.libDir + 'ngclipboard'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'clipboard/dist/clipboard*.js',
|
|
|
|
dest: paths.libDir + 'clipboard'
|
2016-08-12 00:05:33 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
src: [
|
|
|
|
paths.npmDir + 'angulartics-google-analytics/lib/angulartics*.js',
|
|
|
|
paths.npmDir + 'angulartics/src/angulartics.js'
|
|
|
|
],
|
|
|
|
dest: paths.libDir + 'angulartics'
|
2015-12-09 04:35:05 +01:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
var tasks = libs.map(function (lib) {
|
|
|
|
return gulp.src(lib.src).pipe(gulp.dest(lib.dest));
|
|
|
|
});
|
|
|
|
|
|
|
|
return merge(tasks);
|
|
|
|
});
|
|
|
|
|
2017-02-11 19:03:48 +01:00
|
|
|
gulp.task('webpack', ['webpack:forge']);
|
|
|
|
|
|
|
|
gulp.task('webpack:forge', function () {
|
|
|
|
var forgeDir = paths.npmDir + '/node-forge/lib/';
|
|
|
|
|
|
|
|
return gulp.src([
|
|
|
|
forgeDir + 'pbkdf2.js',
|
|
|
|
forgeDir + 'aes.js',
|
2017-02-21 04:25:38 +01:00
|
|
|
forgeDir + 'rsa.js',
|
2017-02-11 19:03:48 +01:00
|
|
|
forgeDir + 'hmac.js',
|
|
|
|
forgeDir + 'sha256.js',
|
|
|
|
forgeDir + 'random.js',
|
|
|
|
forgeDir + 'forge.js'
|
|
|
|
]).pipe(webpack({
|
|
|
|
output: {
|
|
|
|
filename: 'forge.js',
|
|
|
|
library: 'forge',
|
|
|
|
libraryTarget: 'umd'
|
|
|
|
},
|
|
|
|
node: {
|
|
|
|
Buffer: false,
|
|
|
|
process: false,
|
|
|
|
crypto: false,
|
|
|
|
setImmediate: false
|
|
|
|
}
|
|
|
|
})).pipe(gulp.dest(paths.libDir + 'forge'));
|
|
|
|
});
|
|
|
|
|
2015-12-09 04:35:05 +01:00
|
|
|
gulp.task('settings', function () {
|
|
|
|
return config()
|
|
|
|
.pipe(gulp.dest(paths.webroot + 'app'));
|
|
|
|
});
|
|
|
|
|
|
|
|
function config() {
|
|
|
|
return gulp.src('./settings.json')
|
|
|
|
.pipe(ngConfig('bit', {
|
|
|
|
createModule: false,
|
|
|
|
constants: _.merge({}, {
|
|
|
|
appSettings: {
|
|
|
|
version: project.version,
|
2016-12-01 06:07:03 +01:00
|
|
|
environment: project.production ? 'Production' : 'Development'
|
2015-12-09 04:35:05 +01:00
|
|
|
}
|
2016-12-01 06:07:03 +01:00
|
|
|
}, require('./settings' + (project.production ? '.Production' : '') + '.json') || {})
|
2015-12-09 04:35:05 +01:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
gulp.task('less', function () {
|
|
|
|
return gulp.src(paths.lessDir + 'vault.less')
|
|
|
|
.pipe(less())
|
|
|
|
.pipe(gulp.dest(paths.cssDir));
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('watch', function () {
|
|
|
|
gulp.watch(paths.lessDir + '*.less', ['less']);
|
|
|
|
gulp.watch('./settings*.json', ['settings']);
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('dist:clean', function (cb) {
|
|
|
|
return rimraf(paths.dist, cb);
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('dist:move', function () {
|
|
|
|
var moves = [
|
2015-12-09 04:54:29 +01:00
|
|
|
{
|
2016-12-03 06:56:41 +01:00
|
|
|
src: './CNAME',
|
2015-12-09 04:54:29 +01:00
|
|
|
dest: paths.dist
|
|
|
|
},
|
2015-12-09 04:35:05 +01:00
|
|
|
{
|
|
|
|
src: [
|
|
|
|
paths.npmDir + 'bootstrap/dist/**/bootstrap.min.js',
|
|
|
|
paths.npmDir + 'bootstrap/dist/**/bootstrap.min.css',
|
|
|
|
paths.npmDir + 'bootstrap/dist/**/fonts/**/*',
|
|
|
|
],
|
|
|
|
dest: paths.dist + 'lib/bootstrap'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: [
|
|
|
|
paths.npmDir + 'font-awesome/**/font-awesome.min.css',
|
|
|
|
paths.npmDir + 'font-awesome/**/fonts/**/*'
|
|
|
|
],
|
|
|
|
dest: paths.dist + 'lib/font-awesome'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'jquery/dist/jquery.min.js',
|
|
|
|
dest: paths.dist + 'lib/jquery'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: paths.npmDir + 'angular/angular.min.js',
|
|
|
|
dest: paths.dist + 'lib/angular'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
src: [
|
|
|
|
paths.webroot + '**/app/**/*.html',
|
|
|
|
paths.webroot + '**/images/**/*',
|
|
|
|
paths.webroot + 'index.html',
|
|
|
|
paths.webroot + 'favicon.ico'
|
|
|
|
],
|
|
|
|
dest: paths.dist
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
var tasks = moves.map(function (move) {
|
|
|
|
return gulp.src(move.src).pipe(gulp.dest(move.dest));
|
|
|
|
});
|
|
|
|
|
|
|
|
return merge(tasks);
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('dist:css', function () {
|
|
|
|
return gulp
|
|
|
|
.src([
|
|
|
|
paths.cssDir + '**/*.css',
|
|
|
|
'!' + paths.cssDir + '**/*.min.css'
|
|
|
|
])
|
2016-10-14 01:57:56 +02:00
|
|
|
.pipe(preprocess({ context: { cacheTag: randomString } }))
|
2015-12-09 04:35:05 +01:00
|
|
|
.pipe(cssmin())
|
|
|
|
.pipe(rename({ suffix: '.min' }))
|
|
|
|
.pipe(gulp.dest(paths.dist + 'css'));
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('dist:js:app', function () {
|
|
|
|
var mainStream = gulp
|
|
|
|
.src([
|
|
|
|
paths.webroot + 'app/app.js',
|
|
|
|
'!' + paths.webroot + 'app/settings.js',
|
|
|
|
paths.webroot + 'app/**/*Module.js',
|
|
|
|
paths.webroot + 'app/**/*.js'
|
|
|
|
]);
|
|
|
|
|
|
|
|
merge(mainStream, config())
|
2016-10-14 01:57:56 +02:00
|
|
|
.pipe(preprocess({ context: { cacheTag: randomString } }))
|
2015-12-09 04:35:05 +01:00
|
|
|
.pipe(concat(paths.dist + '/js/app.min.js'))
|
|
|
|
.pipe(ngAnnotate())
|
|
|
|
.pipe(uglify())
|
|
|
|
.pipe(gulp.dest('.'));
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('dist:js:lib', function () {
|
|
|
|
return gulp
|
|
|
|
.src([
|
2016-08-12 02:43:05 +02:00
|
|
|
paths.libDir + 'angulartics/angulartics.js',
|
2015-12-09 04:35:05 +01:00
|
|
|
paths.libDir + '**/*.js',
|
|
|
|
'!' + paths.libDir + '**/*.min.js',
|
|
|
|
'!' + paths.libDir + 'angular/**/*',
|
|
|
|
'!' + paths.libDir + 'bootstrap/**/*',
|
|
|
|
'!' + paths.libDir + 'jquery/**/*'
|
|
|
|
])
|
|
|
|
.pipe(concat(paths.dist + '/js/lib.min.js'))
|
|
|
|
.pipe(uglify())
|
|
|
|
.pipe(gulp.dest('.'));
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('dist:preprocess', function () {
|
|
|
|
return gulp
|
|
|
|
.src([
|
|
|
|
paths.dist + '/**/*.html'
|
|
|
|
], { base: '.' })
|
2016-10-14 01:57:56 +02:00
|
|
|
.pipe(preprocess({ context: { cacheTag: randomString }}))
|
2015-12-09 04:35:05 +01:00
|
|
|
.pipe(gulp.dest('.'));
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('dist', ['build'], function (cb) {
|
|
|
|
return runSequence(
|
|
|
|
'dist:clean',
|
|
|
|
['dist:move', 'dist:css', 'dist:js:app', 'dist:js:lib'],
|
|
|
|
'dist:preprocess',
|
|
|
|
cb);
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('deploy', ['dist'], function () {
|
|
|
|
return gulp.src(paths.dist + '**/*')
|
|
|
|
.pipe(ghPages({ cacheDir: paths.dist + '.publish' }));
|
|
|
|
});
|
2016-12-01 05:30:08 +01:00
|
|
|
|
|
|
|
gulp.task('serve', function () {
|
|
|
|
connect.server({
|
2017-03-12 01:51:28 +01:00
|
|
|
port: 4001,
|
2016-12-01 05:50:00 +01:00
|
|
|
root: ['src']
|
2016-12-01 05:30:08 +01:00
|
|
|
});
|
|
|
|
});
|