-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathbuild.js
164 lines (153 loc) · 5.2 KB
/
build.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
import { build, context } from 'esbuild';
import { lessLoader } from "esbuild-plugin-less";
import progress from "@olton/esbuild-plugin-progress";
import autoprefixer from "@olton/esbuild-plugin-autoprefixer";
import unlink from "@olton/esbuild-plugin-unlink";
import { replace } from "esbuild-plugin-replace";
import pkg from "./package.json" with {type: "json"};
const production = process.env.MODE === "production"
const version = pkg.version
const banner = `
/*!
███╗ ███╗███████╗████████╗██████╗ ██████╗ ██╗ ██╗██╗
████╗ ████║██╔════╝╚══██╔══╝██╔══██╗██╔═══██╗ ██║ ██║██║
██╔████╔██║█████╗ ██║ ██████╔╝██║ ██║ ██║ ██║██║
██║╚██╔╝██║██╔══╝ ██║ ██╔══██╗██║ ██║ ██║ ██║██║
██║ ╚═╝ ██║███████╗ ██║ ██║ ██║╚██████╔╝ ╚██████╔╝██║
╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝
* Metro UI v${version} Components Library (https://metroui.org.ua)
* Build: ${new Date().toLocaleString()}
* Copyright 2012-${new Date().getFullYear()} by Serhii Pimenov
* Licensed under MIT
*/
`
if (production) {
await build({
entryPoints: ['./source/default.js'],
outfile: './lib/metro.js',
bundle: true,
minify: production,
sourcemap: false,
banner: {
js: banner
},
plugins: [
progress({
text: 'Building Metro UI...',
succeedText: `Metro UI built successfully in %s ms!`
}),
lessLoader(),
autoprefixer(),
replace({
'__BUILD_TIME__': new Date().toLocaleString(),
'__VERSION__': version,
})
],
})
await build({
entryPoints: ['./source/index.js'],
outfile: './lib/metro.all.js',
bundle: true,
minify: production,
sourcemap: false,
banner: {
js: banner
},
plugins: [
progress({
text: 'Building Metro UI with icons...',
succeedText: 'Metro UI with icons built successfully in %s ms!'
}),
lessLoader(),
autoprefixer(),
replace({
'__BUILD_TIME__': new Date().toLocaleString(),
'__VERSION__': version,
})
],
})
await build({
entryPoints: ['./source/icons.js'],
outfile: './lib/icons.js',
bundle: true,
minify: production,
sourcemap: false,
plugins: [
progress({
text: 'Building Metro UI icons...',
succeedText: 'Metro UI icons built successfully in %s ms!'
}),
lessLoader(),
unlink({
files: ['./lib/icons.js']
})
],
})
} else {
let ctxLib = await context({
entryPoints: ['./source/default.js'],
outfile: './lib/metro.js',
bundle: true,
minify: false,
sourcemap: true,
banner: {
js: banner
},
plugins: [
progress({
text: 'Building Metro UI...',
succeedText: 'Library compiled in %s ms! Watching for changes...'
}),
lessLoader(),
autoprefixer(),
replace({
'__BUILD_TIME__': new Date().toLocaleString(),
'__VERSION__': pkg.version,
})
],
})
let ctxAll = await context({
entryPoints: ['./source/index.js'],
outfile: './lib/metro.all.js',
bundle: true,
minify: false,
sourcemap: true,
banner: {
js: banner
},
plugins: [
progress({
text: 'Building Metro UI...',
succeedText: 'Library compiled in %s ms! Watching for changes...'
}),
lessLoader(),
autoprefixer(),
replace({
'__BUILD_TIME__': new Date().toLocaleString(),
'__VERSION__': pkg.version,
})
],
})
let ctxIcons = await context({
entryPoints: ['./source/icons.js'],
outfile: './lib/icons.js',
bundle: true,
minify: production,
sourcemap: false,
plugins: [
progress({
text: 'Building Metro UI icons...',
succeedText: 'Icons compiled in %s ms! Watching for changes...'
}),
lessLoader(),
unlink({
files: ['./lib/icons.js']
})
],
})
await Promise.all([
await ctxLib.watch(),
await ctxIcons.watch(),
await ctxAll.watch(),
])
}