update the web mail sample source

This commit is contained in:
Balachandar M 2018-12-26 15:20:19 +05:30 коммит произвёл Bharath
Родитель 59b7b7ed52
Коммит 0b49221602
3 изменённых файлов: 27 добавлений и 13 удалений

Просмотреть файл

@ -1,5 +1,7 @@
var webpackGulp = require('webpack-stream');
var fs = require('fs');
var gulp = require('gulp');
var webpack = require('webpack');
var webpackGulp = require('webpack-stream');
/**
* Bundle all module using webpack
@ -18,6 +20,7 @@ gulp.task('build', ['ship-deps'], function(done) {
if (!fs.existsSync('./styles')) {
fs.mkdirSync('./styles');
}
var runSequence = require('run-sequence');
runSequence('bundle', done);
});
@ -29,3 +32,17 @@ gulp.task('ship-deps', function(done) {
done();
});
});
/**
* Load the samples
*/
gulp.task('serve', ['build'], function (done) {
var browserSync = require('browser-sync');
var bs = browserSync.create('Essential JS 2');
var options = {
server: {
baseDir: './'
},
ui: false
};
bs.init(options, done);
});

Просмотреть файл

@ -6,7 +6,13 @@
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2": "*",
"browser-sync": "^2.24.7",
"crossroads": "^0.12.2",
"hasher": "^1.2.0"
}
"gulp": "^3.9.1",
"hasher": "^1.2.0",
"webpack-stream": "^5.1.1"
},
"devDependencies": {
"run-sequence": "^2.2.1"
}
}

Просмотреть файл

@ -9,15 +9,6 @@ module.exports = {
libraryTarget: 'this'
},
plugins: [
new webpack.optimize.UglifyJsPlugin({
beautify: false,
output: {
comments: false
},
compress: {
warnings: false,
unused: true
}
})
]
}