mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2025-04-21 01:15:42 +02:00

* Port admin settings to vue Co-authored-by: anoy. <anoymouserver@users.noreply.github.com> Co-authored-by: Benjamin Brahmer <info@b-brahmer.de> Signed-off-by: Carl Schwan <carl@carlschwan.eu>
80 lines
2.1 KiB
JavaScript
80 lines
2.1 KiB
JavaScript
/**
|
|
* Nextcloud - News
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
* @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/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', '!news-admin-settings.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();
|
|
});
|