123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- 'use strict'
- const gulp = require('gulp')
- const watch = require('gulp-watch')
- const merge = require('merge-stream')
- const babel = require('gulp-babel')
- const uglify = require('gulp-uglify')
- const concat = require('gulp-concat')
- const nodemon = require('gulp-nodemon')
- const plumber = require('gulp-plumber')
- const zip = require('gulp-zip')
- const tar = require('gulp-tar')
- const gzip = require('gulp-gzip')
- const sass = require('gulp-sass')
- const cleanCSS = require('gulp-clean-css')
- const include = require('gulp-include')
- const run = require('run-sequence')
- /**
- * Paths
- *
- * @type {Object}
- */
- const paths = {
- scripts: {
- combine: [
- './node_modules/socket.io-client/dist/socket.io.min.js',
- './node_modules/jquery/dist/jquery.min.js',
- './node_modules/vue/dist/vue.min.js',
- './node_modules/axios/dist/axios.min.js',
- './node_modules/jquery-smooth-scroll/jquery.smooth-scroll.min.js',
- './node_modules/jquery-simple-upload/simpleUpload.min.js',
- './node_modules/jquery-contextmenu/dist/jquery.contextMenu.min.js',
- './node_modules/sticky-js/dist/sticky.min.js',
- './node_modules/simplemde/dist/simplemde.min.js',
- './node_modules/ace-builds/src-min-noconflict/ace.js',
- './node_modules/ace-builds/src-min-noconflict/ext-modelist.js',
- './node_modules/ace-builds/src-min-noconflict/mode-markdown.js',
- './node_modules/ace-builds/src-min-noconflict/theme-tomorrow_night.js',
- './node_modules/filesize.js/dist/filesize.min.js',
- './node_modules/lodash/lodash.min.js'
- ],
- ace: [
- './node_modules/ace-builds/src-min-noconflict/mode-*.js',
- '!./node_modules/ace-builds/src-min-noconflict/mode-markdown.js'
- ],
- compile: [
- './client/js/*.js'
- ],
- watch: [
- './client/js/**/*.js'
- ]
- },
- css: {
- combine: [
- './node_modules/highlight.js/styles/tomorrow.css',
- './node_modules/simplemde/dist/simplemde.min.css'
- ],
- compile: [
- './client/scss/*.scss'
- ],
- includes: [
- './node_modules/requarks-core' //! MUST BE LAST
- ],
- watch: [
- './client/scss/**/*.scss',
- '../core/core-client/scss/**/*.scss'
- ]
- },
- fonts: [
- '../node_modules/requarks-core/core-client/fonts/**/*' //! MUST BE LAST
- ],
- deploy: [
- './**/*',
- '!client/js', '!client/js/**',
- '!client/scss', '!client/scss/**',
- '!coverage', '!coverage/**',
- '!data', '!data/**',
- '!dist', '!dist/**',
- '!node_modules', '!node_modules/**',
- '!npm', '!npm/**',
- '!repo', '!repo/**',
- '!test', '!test/**',
- '!gulpfile.js', '!config.yml'
- ]
- }
- /**
- * TASK - Starts server in development mode
- */
- gulp.task('server', ['scripts', 'css', 'fonts'], function () {
- nodemon({
- script: './server',
- ignore: ['assets/', 'client/', 'data/', 'repo/', 'tests/'],
- ext: 'js json',
- env: { 'NODE_ENV': 'development' }
- })
- })
- gulp.task('configure', ['scripts', 'css', 'fonts'], function () {
- nodemon({
- exec: 'node wiki configure',
- ignore: ['assets/', 'client/', 'data/', 'repo/', 'tests/'],
- ext: 'js json',
- env: { 'NODE_ENV': 'development' }
- })
- })
- /**
- * TASK - Process all scripts processes
- */
- gulp.task('scripts', ['scripts-libs', 'scripts-app'])
- /**
- * TASK - Combine js libraries
- */
- gulp.task('scripts-libs', function () {
- return merge(
- gulp.src(paths.scripts.combine)
- .pipe(concat('libs.js', {newLine: ';\n'}))
- .pipe(uglify({ mangle: false }))
- .pipe(gulp.dest('./assets/js')),
- gulp.src(paths.scripts.ace)
- .pipe(gulp.dest('./assets/js/ace'))
- )
- })
- /**
- * TASK - Combine, make compatible and compress js app scripts
- */
- gulp.task('scripts-app', function () {
- return gulp.src(paths.scripts.compile)
- .pipe(plumber())
- .pipe(include({ extensions: 'js' }))
- .pipe(babel())
- .pipe(uglify())
- .pipe(plumber.stop())
- .pipe(gulp.dest('./assets/js'))
- })
- /**
- * TASK - Process all css processes
- */
- gulp.task('css', ['css-libs', 'css-app'])
- /**
- * TASK - Combine css libraries
- */
- gulp.task('css-libs', function () {
- return gulp.src(paths.css.combine)
- .pipe(plumber())
- .pipe(concat('libs.css'))
- .pipe(cleanCSS({ keepSpecialComments: 0 }))
- .pipe(plumber.stop())
- .pipe(gulp.dest('./assets/css'))
- })
- /**
- * TASK - Combine app css
- */
- gulp.task('css-app', function () {
- return gulp.src(paths.css.compile)
- .pipe(plumber())
- .pipe(sass.sync({ includePaths: paths.css.includes }))
- .pipe(cleanCSS({ keepSpecialComments: 0 }))
- .pipe(plumber.stop())
- .pipe(gulp.dest('./assets/css'))
- })
- /**
- * TASK - Copy web fonts
- */
- gulp.task('fonts', function () {
- return gulp.src(paths.fonts)
- .pipe(gulp.dest('./assets/fonts'))
- })
- /**
- * TASK - Start dev watchers
- */
- gulp.task('watch', function () {
- return merge(
- watch(paths.scripts.watch, {base: './'}, function () { return gulp.start('scripts-app') }),
- watch(paths.css.watch, {base: './'}, function () { return gulp.start('css-app') })
- )
- })
- /**
- * TASK - Starts development server with watchers
- */
- gulp.task('default', ['watch', 'server'])
- gulp.task('default-configure', ['watch', 'configure'])
- gulp.task('dev', function () {
- paths.css.includes.pop()
- paths.css.includes.push('../core')
- paths.fonts.pop()
- paths.fonts.push('../core/core-client/fonts/**/*')
- return run('default')
- })
- gulp.task('dev-configure', function () {
- paths.css.includes.pop()
- paths.css.includes.push('../core')
- paths.fonts.pop()
- paths.fonts.push('../core/core-client/fonts/**/*')
- return run('default-configure')
- })
- /**
- * TASK - Creates deployment packages
- */
- gulp.task('deploy', ['scripts', 'css', 'fonts'], function () {
- var zipStream = gulp.src(paths.deploy)
- .pipe(zip('wiki-js.zip'))
- .pipe(gulp.dest('dist'))
- var targzStream = gulp.src(paths.deploy)
- .pipe(tar('wiki-js.tar'))
- .pipe(gzip())
- .pipe(gulp.dest('dist'))
- return merge(zipStream, targzStream)
- })
|