-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgulpfile.js
138 lines (128 loc) · 2.76 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
const gulp = require('gulp');
const postcss = require('gulp-postcss');
const babel = require('gulp-babel');
const concat = require('gulp-concat');
/**
* Compile component CSS. We also convert variables here
* to make the published package more consumable.
*/
gulp.task('shared:css', () => {
return gulp
.src('./src/components/**/*.css')
.pipe(postcss())
.pipe(gulp.dest('lib/components'));
});
/**
* Compile React components JS from ES6/JSX down to ES5
*/
gulp.task('react:js', () =>
gulp
.src([
'!src/**/*.js',
'src/**/*.react.js',
'src/**/index.js',
'!**/__tests__/*',
'!src/design-tokens/*',
'!**/__examples__/*',
'!src/utils/test/**/*',
])
.pipe(
babel({
presets: ['es2015', 'react', 'stage-2'],
ignore: ['__tests__', '__examples__'],
})
)
.pipe(gulp.dest('lib'))
);
/**
* Compile vanilla JS from ES6 down to ES5
*/
gulp.task('vanilla:js', () =>
gulp
.src([
'src/**/*.js',
'!src/**/*.react.js',
'!**/__tests__/*',
'!src/design-tokens/*',
'!**/__examples__/*',
'!src/utils/test/**/*',
])
.pipe(
babel({
presets: ['es2015', 'stage-2'],
ignore: ['__tests__', '__examples__'],
})
)
.pipe(gulp.dest('lib'))
);
/**
* Copy component assets (font files, images)
*/
gulp.task('shared:copy-files', () =>
gulp
.src(
'src/components/**/*(*.woff|*.woff2|*.ttf|*.jpg|*.jpeg|*.png|*.gif|*.svg)'
)
.pipe(gulp.dest('lib/components'))
);
/**
* Copy design tokens to lib
*/
gulp.task('shared:copy-design-tokens', () =>
gulp
.src(['src/design-tokens/*(*.js|*.json|*.css)'])
.pipe(gulp.dest('lib/design-tokens'))
);
/**
* Copy icons to lib
*/
gulp.task('shared:copy-icons', () =>
gulp.src(['src/icons/**/*']).pipe(gulp.dest('lib/icons'))
);
/**
* Copy compiled CSS to NPM lib
*/
gulp.task('vanilla:build-bundled-css', () =>
gulp
.src([
'./src/components/**/*.css',
'!./src/components/**/*.react.css',
'!./src/components/grid/grid.css',
])
.pipe(concat('ui-bundle.css'))
.pipe(postcss())
.pipe(gulp.dest('lib'))
);
/**
* Copy and compile core stylesheets
*/
gulp.task('shared:build-core-css', () =>
gulp
.src(['./src/styles/kalo-ui-*.css'])
.pipe(postcss())
.pipe(gulp.dest('lib/styles'))
);
/**
* ===========
* Core Tasks
* ===========
*/
gulp.task(
'build-npm-package',
gulp.series(
'react:js',
'vanilla:js',
'shared:css',
'shared:copy-files',
'shared:copy-design-tokens',
'shared:copy-icons',
'vanilla:build-bundled-css',
'shared:build-core-css'
)
);
gulp.task('watch', () => {
gulp.watch(
['./src/components/**/*.module.css'],
gulp.parallel('vanilla:build-bundled-css')
);
});