mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 05:37:51 +00:00
b6f3975bc1
To fix the same error as here https://github.com/nodejs/node/issues/20285 Task changes as described at https://fettblog.eu/gulp-4-parallel-and-series/ Change-type: patch Signed-off-by: Gergely Imreh <gergely@balena.io>
41 lines
937 B
CoffeeScript
41 lines
937 B
CoffeeScript
path = require('path')
|
|
gulp = require('gulp')
|
|
coffee = require('gulp-coffee')
|
|
inlinesource = require('gulp-inline-source')
|
|
mocha = require('gulp-mocha')
|
|
shell = require('gulp-shell')
|
|
packageJSON = require('./package.json')
|
|
|
|
OPTIONS =
|
|
files:
|
|
coffee: [ 'lib/**/*.coffee', 'gulpfile.coffee' ]
|
|
app: 'lib/**/*.coffee'
|
|
tests: 'tests/**/*.spec.coffee'
|
|
pages: 'lib/auth/pages/*.ejs'
|
|
directories:
|
|
build: 'build/'
|
|
|
|
gulp.task 'pages', ->
|
|
gulp.src(OPTIONS.files.pages)
|
|
.pipe(inlinesource())
|
|
.pipe(gulp.dest('build/auth/pages'))
|
|
|
|
gulp.task 'coffee', ->
|
|
gulp.src(OPTIONS.files.app)
|
|
.pipe(coffee(bare: true, header: true))
|
|
.pipe(gulp.dest(OPTIONS.directories.build))
|
|
|
|
gulp.task 'test', ->
|
|
gulp.src(OPTIONS.files.tests, read: false)
|
|
.pipe(mocha({
|
|
reporter: 'spec'
|
|
}))
|
|
|
|
gulp.task 'build', gulp.series [
|
|
'coffee',
|
|
'pages'
|
|
]
|
|
|
|
gulp.task 'watch', gulp.series [ 'build' ], ->
|
|
gulp.watch([ OPTIONS.files.coffee ], [ 'build' ])
|