forked from yairEO/tagify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
205 lines (171 loc) · 5.83 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
var gulp = require('gulp'),
$ = require( "gulp-load-plugins" )({ pattern:['*', 'gulp-'] }),
terser = require("rollup-plugin-terser").terser,
rollupBanner = require("rollup-plugin-banner").default,
babel = require("@rollup/plugin-babel").babel,
fs = require('fs'),
rollupStream = require("@rollup/stream"),
pkg = require('./package.json'),
opts = process.argv.reduce((result, item) => {
if( item.indexOf('--') == 0 )
result[item.replace('--','')] = 1
return result;
}, {});
var rollupCache = {};
var banner = `Tagify (v ${process.env.npm_package_version}) - tags input component
By ${pkg.author.name}
Don't sell this code. (c)
${pkg.homepage}`;
var jQueryPluginWrap = [`;(function($){
// just a jQuery wrapper for the vanilla version of this component
$.fn.tagify = function(settings = {}){
return this.each(function() {
var $input = $(this),
tagify;
if( $input.data("tagify") ) // don't continue if already "tagified"
return this;
settings.isJQueryPlugin = true;
tagify = new Tagify($input[0], settings);
$input.data("tagify", tagify);
});
}
` , ` })(jQuery); `];
const babelConfig = {
presets: ['@babel/env'],
plugins: ['@babel/proposal-object-rest-spread', '@babel/plugin-transform-destructuring']
}
////////////////////////////////////////////////////
// Compile main app SCSS to CSS
function scss(){
return gulp.src('src/*.scss')
.pipe($.cssGlobbing({
extensions: '.scss'
}))
.pipe(
$.sass().on('error', $.sass.logError)
)
// .pipe($.combineMq()) // combine media queries
.pipe($.autoprefixer({ overrideBrowserslist:['> 5%'] }) )
.pipe($.cleanCss())
.pipe(gulp.dest('./dist'))
}
// https://medium.com/recraftrelic/building-a-react-component-as-a-npm-module-18308d4ccde9
function react(done){
const umdConf = {
exports: function(file) {
return 'exports';
}
}
return gulp.src('src/react.tagify.js')
.pipe( $.babel({ ...babelConfig, presets:[...babelConfig.presets, '@babel/preset-react'] }))
.pipe( $.umd(umdConf) )
.pipe(opts.dev ? $.tap(()=>{}) : $.terser())
// .pipe($.headerComment(banner))
.pipe( gulp.dest('./dist/') )
}
function js(done){
return rollup({
entry: 'src/tagify.js',
outputName: 'tagify.min.js'
})
.on('end', done)
}
function jquery(){
// do not proccess jQuery version while developeing
if( opts.dev )
return Promise.resolve('"dev" does not compile jQuery')
return gulp.src('dist/tagify.min.js')
.pipe($.insert.wrap(jQueryPluginWrap[0], jQueryPluginWrap[1]))
.pipe($.rename('jQuery.tagify.min.js'))
// .pipe($.terser())
// .pipe($.headerComment(banner))
.pipe(gulp.dest('./dist/'))
}
function handleError(err) {
$.util.log( err.toString() );
this.emit('end');
}
function polyfills(done){
return rollup({
entry: 'src/tagify.polyfills.js',
outputName: 'tagify.polyfills.min.js'
})
.on('end', done)
}
function rollup({ entry, outputName, dest, plugins=[], babelConf={} }){
plugins = [
babel({...babelConfig, babelHelpers: 'bundled', ...babelConf}),
// rollupBanner(banner),
...plugins
]
if( !opts.dev )
plugins.push(terser())
return rollupStream({
input: entry,
plugins,
// sourcemap: true,
cache: rollupCache[entry],
output: {
name: 'Tagify',
format: 'umd',
}
})
.on('bundle', function(bundle) {
rollupCache[entry] = bundle;
})
// give the file the name you want to output with
.pipe( $.vinylSourceStream(outputName))
// .on('error', handleError)
.pipe(gulp.dest('./dist'));
}
/**
* Bumping version number and tagging the repository with it.
* Please read http://semver.org/
*
* You can use the commands
*
* gulp patch # makes v0.1.0 → v0.1.1
* gulp feature # makes v0.1.1 → v0.2.0
* gulp release # makes v0.2.1 → v1.0.0
*
* To bump the version numbers accordingly after you did a patch,
* introduced a feature or made a backwards-incompatible release.
*/
const inc = importance => () =>
// get all the files to bump version in
gulp.src('./package.json')
// bump the version number in those files
.pipe($.bump({type: importance}))
// save it back to filesystem
.pipe(gulp.dest('./'))
function gitTag(){
return gulp.src('./package.json')
// commit the changed version number
.pipe($.git.commit('bumps package version'))
.pipe($.tagVersion());
}
function addBanner(){
var packageJson = JSON.parse(fs.readFileSync('./package.json'))
var banner = `Tagify (v${packageJson.version}) - tags input component
By ${pkg.author.name}
Don't sell this code. (c)
${pkg.homepage}`;
return gulp.src('dist/*.js')
.pipe($.headerComment(banner))
.pipe(gulp.dest('./dist/'))
}
function watch(){
gulp.watch('./src/*.scss', scss)
gulp.watch(['./src/tagify.js', './src/parts/*.js'], gulp.series([js, jquery]))
gulp.watch('./src/react.tagify.js', react)
}
// const build = gulp.series(gulp.parallel(build_js, scss, polyfills), build_jquery_version, react)
const build = gulp.series(gulp.parallel(js, scss, polyfills), jquery, react)
exports.default = gulp.parallel(build, watch)
exports.js = js
exports.build = build
exports.react = react
exports.jquery = jquery
exports.patch = gulp.series(inc('patch'), addBanner, gitTag) // () => inc('patch')
exports.feature = gulp.series(inc('minor'), addBanner, gitTag) // () => inc('minor')
exports.release = gulp.series(inc('major'), addBanner, gitTag) // () => inc('major')