-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.js
308 lines (281 loc) · 8.53 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
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
const StyleDictionary = require("style-dictionary");
const fs = require("fs-extra");
// read brand folder
const brand = process.argv[2] || "spark";
const iosPath = `build/ios/dist/${brand}/`;
const androidRoot = `build/android/${brand}tokens/src/main`;
const androidPath = `${androidRoot}/res/`;
const composePath = `${androidRoot}/kotlin/`;
const webPath = `build/web/dist/${brand}/`;
// before this runs we should clean the directories we are generating files in
// to make sure they are ✨clean✨
[iosPath, androidPath, composePath, webPath].forEach((dir) => {
console.log(`🧹 cleaning ${dir}...`);
fs.removeSync(dir);
});
// Adding custom actions, transforms, and formats
const styleDictionary = StyleDictionary.extend({
// custom actions
action: {
generateColorsets: require("./helpers/actions/ios/colorsets"),
generateGraphics: require("./helpers/actions/assets/graphics"),
generateIcons: require("./helpers/actions/assets/icons"),
},
// custom transforms
transform: {
"attribute/cti": require("./helpers/transforms/attributeCTI"),
colorRGB: require("./helpers/transforms/colorRGB"),
"size/remToFloat": require("./helpers/transforms/remToFloat"),
},
// custom formats
format: {
composeColorPalette: require("./helpers/formats/composeColorPalette"),
swiftColor: require("./helpers/formats/swiftColor"),
swiftImage: require("./helpers/formats/swiftImage"),
},
});
const modes = [`light`, `dark`, `hc`, `hcDark`];
const assets = {
transforms: [`attribute/cti`, `color/hex`, `size/remToFloat`],
buildPath: `${webPath}images/`,
iconPath: `${webPath}icons/`,
iosPath,
androidPath,
actions: [`generateGraphics`],
};
const iosColors = {
buildPath: iosPath,
transforms: [`attribute/cti`, `colorRGB`, `name/ti/camel`],
actions: [`generateColorsets`],
};
console.log(`☀️ Building light mode...`);
styleDictionary
.extend({
source: [
// this is saying find any files in the tokens folder
// that does not have .dark or .light, but ends in .json5
`tokens/${brand}/**/!(*.${modes.join(`|*.`)}).json5`,
],
platforms: {
css: {
transformGroup: `css`,
buildPath: webPath,
files: [
{
destination: `variables.css`,
format: `css/variables`,
options: {
outputReferences: true,
},
},
],
},
js: {
transformGroup: `web`,
buildPath: webPath,
files: [
{
destination: `tokens.json`,
format: `json/flat`,
},
],
},
assets: Object.assign(
{ ...assets, actions: [...assets.actions, `generateIcons`] },
{
// mode lets the custom actions know which color mode they are being run on
mode: `light`,
}
),
iosColors: Object.assign(iosColors, {
mode: `light`,
}),
iOS: {
buildPath: iosPath,
transforms: [
`attribute/cti`,
`name/ti/camel`,
`size/swift/remToCGFloat`,
],
files: [
{
destination: `Color.swift`,
format: `swiftColor`,
filter: (token) => token.attributes.category === `color`,
options: {
outputReferences: true,
},
},
{
destination: `Size.swift`,
filter: (token) => token.attributes.category === `size`,
className: `Size`,
format: `ios-swift/class.swift`,
},
{
destination: `Image.swift`,
filter: (token) => token.attributes.category === `image`,
format: `swiftImage`,
},
],
},
android: {
transformGroup: `android`,
buildPath: androidPath,
files: [
{
destination: `values/colors.xml`,
format: `android/resources`,
filter: (token) => token.attributes.category === `color`,
options: {
// this is important!
// this will keep token references intact so that we don't need
// to generate *all* color resources for dark mode, only
// the specific ones that change
outputReferences: true,
},
},
{
destination: `values/font_dimens.xml`,
filter: (token) =>
token.attributes.category === `size` &&
token.attributes.type === `font`,
format: `android/resources`,
},
{
destination: `values/dimens.xml`,
filter: (token) =>
token.attributes.category === `size` &&
token.attributes.type !== `font`,
format: `android/resources`,
},
],
},
compose: {
transformGroup: "compose",
buildPath: composePath,
files: [
{
destination: "PaletteTokens.kt",
format: `composeColorPalette`,
className: "PaletteTokens",
packageName: `com.adevinta.${brand}.tokens`,
filter: (token) =>
token.attributes.category === `color` &&
token.attributes.type === `core`,
},
],
},
},
})
.buildAllPlatforms();
// Dark Mode
// we will only build the files we need to, we don't need to rebuild all the files
console.log(`\n\n🌙 Building dark mode...`);
styleDictionary
.extend({
// Using the include array so that theme token overrides don't show
// warnings in the console.
include: [`tokens/${brand}/**/!(*.${modes.join(`|*.`)}).json5`],
source: [`tokens/${brand}/**/*.dark.json5`],
platforms: {
css: {
transformGroup: `css`,
buildPath: webPath,
files: [
{
destination: `variables-dark.css`,
format: `css/variables`,
// only putting in the tokens from files with '.dark' in the filepath
filter: (token) => token.filePath.indexOf(`.dark`) > -1,
options: {
outputReferences: true,
},
},
],
},
assets: Object.assign(assets, {
mode: `dark`,
}),
iosColors: Object.assign(iosColors, {
mode: `dark`,
}),
android: {
transformGroup: `android`,
buildPath: androidPath,
files: [
{
destination: `values-night/colors.xml`,
format: `android/resources`,
// only outputting the tokens from files with '.dark' in the filepath
filter: (token) => token.filePath.indexOf(`.dark`) > -1,
},
],
},
},
})
.buildAllPlatforms();
// // High-Contrast Dark Mode
// // we will only build the files we need to, we don't need to rebuild all the files
console.log(`\n\n🌈🌙 Building high-contrast dark mode...`);
styleDictionary
.extend({
include: [`tokens/${brand}/**/!(*.${modes.join(`|*.`)}).json5`],
source: [`tokens/${brand}/**/*.hcDark.json5`],
platforms: {
css: {
transformGroup: `css`,
buildPath: webPath,
files: [
{
destination: `variables-hc-dark.css`,
format: `css/variables`,
filter: (token) => token.filePath.indexOf(`.hcDark`) > -1,
options: {
outputReferences: true,
},
},
],
},
// Because iOS only has good support for high-contrast modes
// we will only build the necessary files for iOS:
assets: Object.assign(assets, {
mode: `hcDark`,
}),
iosColors: Object.assign(iosColors, {
mode: `hcDark`,
}),
},
})
.buildAllPlatforms();
// // High-Contrast Light Mode
// // we will only build the files we need to, we don't need to rebuild all the files
console.log(`\n\n🌈☀️ Building high-contrast light mode...`);
styleDictionary
.extend({
include: [`tokens/${brand}/**/!(*.${modes.join(`|*.`)}).json5`],
source: [`tokens/${brand}/**/*.hc.json5`],
platforms: {
css: {
transformGroup: `css`,
buildPath: webPath,
files: [
{
destination: `variables-hc.css`,
format: `css/variables`,
filter: (token) => token.filePath.indexOf(`.hc`) > -1,
options: {
outputReferences: true,
},
},
],
},
assets: Object.assign(assets, {
mode: `hc`,
}),
iosColors: Object.assign(iosColors, {
mode: `hc`,
}),
},
})
.buildAllPlatforms();