summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/angular-smart-table/gulpFile.js
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-portal-FE/client/bower_components/angular-smart-table/gulpFile.js')
-rw-r--r--ecomp-portal-FE/client/bower_components/angular-smart-table/gulpFile.js60
1 files changed, 60 insertions, 0 deletions
diff --git a/ecomp-portal-FE/client/bower_components/angular-smart-table/gulpFile.js b/ecomp-portal-FE/client/bower_components/angular-smart-table/gulpFile.js
new file mode 100644
index 00000000..cd2bb702
--- /dev/null
+++ b/ecomp-portal-FE/client/bower_components/angular-smart-table/gulpFile.js
@@ -0,0 +1,60 @@
+var gulp = require('gulp');
+var concat = require('gulp-concat');
+var uglify = require('gulp-uglify');
+var karma = require('karma').server;
+var jshint = require('gulp-jshint');
+var insert = require('gulp-insert');
+var sourcemaps = require('gulp-sourcemaps');
+var stylish = require('jshint-stylish');
+var packageJson = require('./package.json');
+var pluginList = ['stSearch', 'stSelectRow', 'stSort', 'stPagination', 'stPipe'];
+var disFolder = './dist/';
+var src = (['smart-table.module', 'stConfig', 'stTable']).concat(pluginList).map(function (val) {
+ return 'src/' + val + '.js';
+});
+
+src.push('src/bottom.txt');
+src.unshift('src/top.txt');
+
+//just as indication
+gulp.task('lint', function () {
+ gulp.src(src)
+ .pipe(jshint())
+ .pipe(jshint.reporter(stylish));
+});
+
+
+gulp.task('karma-CI', function (done) {
+ var conf = require('./test/karma.common.js');
+ conf.singleRun = true;
+ conf.browsers = ['PhantomJS'];
+ conf.basePath = './';
+ karma.start(conf, done);
+});
+
+gulp.task('uglify', function () {
+ gulp.src(src)
+ .pipe(concat('smart-table.min.js'))
+ .pipe(sourcemaps.init())
+ .pipe(uglify())
+ .pipe(sourcemaps.write('.'))
+ .pipe(gulp.dest(disFolder));
+});
+
+gulp.task('concat', function () {
+ gulp.src(src, { base: '.' })
+ .pipe(concat('smart-table.js'))
+ .pipe(gulp.dest(disFolder));
+});
+
+gulp.task('test', ['karma-CI']);
+
+gulp.task('build',['test', 'uglify', 'concat'], function () {
+
+ var version = packageJson.version;
+ var string = '/** \n* @version ' + version + '\n* @license MIT\n*/\n';
+
+ gulp.src(disFolder + '*.js')
+ .pipe(insert.prepend(string))
+ .pipe(gulp.dest(disFolder));
+});