-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
96 lines (83 loc) · 2.8 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
var gulp = require('gulp')
// var gutil = require('gulp-util')
gulp.task('default', ['watch'])
/*
const eslint = require('gulp-eslint')
var browserify = require('browserify')
const source = require('vinyl-source-stream')
const glob = require('glob')
const rename = require('gulp-rename')
const es = require('event-stream')
gulp.task('vueify', function(done) {
glob('./private/vue/*.js', function(err, files) {
if (err) done(err)
const tasks = files.map(function(entry) {
return (
browserify({ entries: [entry] })
// .transform([vueify, babelify]) // defined at package.json
.bundle()
.pipe(source(entry))
.pipe(rename({ dirname: '/' }))
.pipe(gulp.dest('./public/javascripts/vue'))
)
})
es.merge(tasks).on('end', done)
})
})
gulp.task('vue-lint', () => {
// Also, Be sure to return the stream from the task;
// Otherwise, the task may end before the stream has finished.
return (
gulp
.src(['./private/vue/*.*'])
// eslint() attaches the lint output to the "eslint" property
// of the file object so it can be used by other modules.
.pipe(
eslint({
configFile: './private/vue/.eslintrc_vue.js',
warnFileIgnored: true,
ignorePath: '.gitignore',
// fix: true,
})
)
// eslint.format() outputs the lint results to the console.
// Alternatively use eslint.formatEach() (see Docs).
.pipe(eslint.format())
// To have the process exit with an error code (1) on
// lint error, return the stream and pipe to failAfterError last.
.pipe(eslint.failAfterError())
)
})
gulp.task('vue:watch', function() {
// gulp.watch(['private/vue/*.*'], ['vue-lint', 'vueify'])
gulp.watch(['private/vue/*.*'], ['vueify'])
})
*/
/*
var source = require('vinyl-source-stream')
var chalk = require('chalk')
var livereload = require('gulp-livereload')
function errHandler(error) {
gutil.log(chalk.red(error.toString()) + '\n' + error.codeFrame)
gutil.log('Waiting...')
this.emit('end')
}
gulp.task('default', ['build', 'watch'])
gulp.task('build', function() {
var stream = browserify({
entries: './private/jsx/entry.js',
extensions: ['.js'],
debug: true,
})
.transform(babelify, {
presets: ['es2015', 'react'],
plugins: ['transform-class-properties'],
})
.bundle()
.on('error', errHandler)
.pipe(source('bundle.js'))
.pipe(gulp.dest('./public/javascripts/'))
.pipe(livereload())
return stream
})
*/