From 3a93c179566ea462727639d1fa004c4cf9500f36 Mon Sep 17 00:00:00 2001 From: Jonathan Treffler Date: Fri, 7 Aug 2020 11:02:47 +0200 Subject: removed gulp Signed-off-by: Jonathan Treffler --- js/gulpfile.js | 80 ---------------------------------------------------------- 1 file changed, 80 deletions(-) delete mode 100644 js/gulpfile.js diff --git a/js/gulpfile.js b/js/gulpfile.js deleted file mode 100644 index e5109cd97..000000000 --- a/js/gulpfile.js +++ /dev/null @@ -1,80 +0,0 @@ -/** - * Nextcloud - News - * - * This file is licensed under the Affero General Public License version 3 or - * later. See the COPYING file. - * - * @author Bernhard Posselt - * @copyright Bernhard Posselt 2012, 2014 - */ - -/*jslint node: true */ -'use strict'; - -const gulp = require('gulp'), - ngAnnotate = require('gulp-ng-annotate'), - terser = require('gulp-terser'), - jshint = require('gulp-jshint'), - KarmaServer = require('karma').Server, - concat = require('gulp-concat'), - sourcemaps = require('gulp-sourcemaps'); - -// Configuration -const buildTarget = 'app.min.js'; -const karmaConfig = __dirname + '/karma.conf.js'; -const destinationFolder = __dirname + '/build/'; -const sources = [ - 'node_modules/angular/angular.min.js', - 'node_modules/angular-animate/angular-animate.min.js', - 'node_modules/angular-route/angular-route.min.js', - 'node_modules/angular-sanitize/angular-sanitize.min.js', - 'node_modules/moment/min/moment-with-locales.min.js', - 'node_modules/masonry-layout/dist/masonry.pkgd.min.js', - 'app/App.js', 'app/Config.js', 'app/Run.js', - 'controller/**/*.js', - 'filter/**/*.js', - 'service/**/*.js', - 'gui/**/*.js', - 'plugin/**/*.js', - 'utility/**/*.js', - 'directive/**/*.js' -]; -const testSources = ['tests/**/*.js']; -const watchSources = sources.concat(testSources).concat(['*.js']); -const lintSources = watchSources; - -// tasks -gulp.task('lint', () => { - return gulp.src(lintSources) - .pipe(jshint()) - .pipe(jshint.reporter('default')) - .pipe(jshint.reporter('fail')); -}); - -gulp.task('default', gulp.series('lint', () => { - return gulp.src(sources) - .pipe(ngAnnotate()) - .pipe(sourcemaps.init()) - .pipe(concat(buildTarget)) - .pipe(terser()) - .pipe(sourcemaps.write()) - .pipe(gulp.dest(destinationFolder)); -})); - -gulp.task('watch', () => { - gulp.watch(watchSources, ['default']); -}); - -gulp.task('karma', (done) => { - new KarmaServer({ - configFile: karmaConfig, - singleRun: true - }, done).start(); -}); - -gulp.task('watch-karma', (done) => { - new KarmaServer({ - configFile: karmaConfig, - autoWatch: true - }, done).start(); -}); -- cgit v1.2.3