-
Notifications
You must be signed in to change notification settings - Fork 8
/
gulpfile.coffee
127 lines (103 loc) · 3.51 KB
/
gulpfile.coffee
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
gulp = require 'gulp'
chalk = require 'chalk'
gbump = require 'gulp-bump'
coffee = require 'gulp-coffee'
connect = require 'gulp-connect'
open = require 'open'
replace = require 'gulp-replace'
yargs = require 'yargs'
.wrap 80
.alias 'h', 'help'
.describe 'help', 'Show this help information.'
.check (argv) -> if argv.help then throw new Error 'Help!'
log = (plugin, msg) -> console.log chalk.reset("[#{chalk.green plugin}]"), msg
log.warn = (plugin, msg) -> console.warn chalk.reset("[#{chalk.yellow plugin}]"), msg
log.error = (plugin, error) ->
prefix = chalk.reset "[#{chalk.red plugin}]"
if error.stack
console.error prefix, line for line in error.stack.split '\n'
else console.error prefix, error.message or error
gulp.task 'build', ->
gulp.src './src/**/*.coffee'
.pipe coffee bare: true
.on 'error', (error) ->
log.error 'coffee', error
@end()
.pipe gulp.dest '.'
.pipe connect.reload()
gulp.task 'build:tests', ->
gulp.src './test/**/*.coffee'
.pipe coffee bare: true
.on 'error', (error) ->
log.error 'coffee', error
@end()
.pipe gulp.dest './test/'
.pipe connect.reload()
gulp.task 'bump', ['bump:packagemeta'], ->
delete require.cache[require.resolve './package.json']
{version} = require './package.json'
gulp.src ['./src/gsap-react-plugin.coffee']
.pipe replace /version: '[\w\.\-]+'/g, "version: '#{ version }'"
.pipe gulp.dest './src/'
gulp.task 'bump:packagemeta', ->
argv = yargs
.usage '''
Bump the package version.
With no options, bumps to the next patch version.
Usage: gulp bump [--major|--minor|--patch|--to x.x.x]
'''
.options
major:
describe: 'Bump the package to the next major version (1.x.x to 2.0.0)'
minor:
describe: 'Bump the package to the next minor version (1.0.x to 1.1.0)'
patch:
describe: 'Bump the package to the next patch version (1.0.0 to 1.0.1)'
to:
describe: 'Bump the package to the specified version'
.check (argv) ->
if argv.major and argv.minor
throw new Error 'Cannot specify both major and minor'
else if argv.major and argv.patch
throw new Error 'Cannot specify both major and patch'
else if argv.major and argv.to
throw new Error 'Cannot specify both major and version'
else if argv.minor and argv.patch
throw new Error 'Cannot specify both minor and patch'
else if argv.minor and argv.to
throw new Error 'Cannot specify both minor and version'
else if argv.patch and argv.to
throw new Error 'Cannot specify both patch and version'
.argv
opts =
if argv.to
version: argv.to
else if argv.major
type: 'major'
else if argv.minor
type: 'minor'
else
type: 'patch'
gulp.src ['./bower.json', './package.json']
.pipe gbump opts
.pipe gulp.dest './'
# A server for the test page
gulp.task 'testserver', ->
connect.server opts =
root: __dirname
host: 'localhost'
port: 1337
livereload: true
url = "http://#{opts.host}:#{opts.port}/test/index.html"
browser = 'Google Chrome'
open url, browser, (error) ->
if error
log.error 'open', error
else
log 'open', "Opened #{chalk.magenta url} in #{chalk.green browser}"
file: 'index.html'
gulp.task 'test', ['build', 'build:tests', 'testserver']
gulp.task 'watch', ->
gulp.watch './src/**/*.coffee', ['build']
gulp.watch './test/**/*.coffee', ['build:tests']
gulp.task 'dev', ['test', 'watch']