purgetss 5.3.13 → 5.3.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/fonts/FontAwesome6Brands-Regular.ttf +0 -0
- package/assets/fonts/FontAwesome6Free-Regular.ttf +0 -0
- package/assets/fonts/FontAwesome6Free-Solid.ttf +0 -0
- package/bin/purgetss +4 -6
- package/dist/fontawesome.js +71 -37
- package/dist/fontawesome.tss +71 -37
- package/dist/tailwind-auto.tss +23491 -0
- package/index.js +494 -462
- package/lib/completions/titanium/completions-v3.json +33294 -0
- package/lib/helpers.js +69 -120
- package/package.json +4 -5
- package/lib/templates/alloy-local.jmk +0 -3
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/purgetss
CHANGED
|
@@ -4,7 +4,6 @@ const chalk = require('chalk');
|
|
|
4
4
|
const program = require('caporal');
|
|
5
5
|
const pkg = require('../package.json');
|
|
6
6
|
const purgetss = require('../index.js');
|
|
7
|
-
const package = require('../package.json');
|
|
8
7
|
const updateNotifier = require('update-notifier');
|
|
9
8
|
|
|
10
9
|
// check if a new version of PurgeTSS is available and print an update notification
|
|
@@ -14,8 +13,8 @@ if (notifier.update && notifier.update.latest !== pkg.version) {
|
|
|
14
13
|
}
|
|
15
14
|
|
|
16
15
|
program
|
|
17
|
-
.version(
|
|
18
|
-
.description(
|
|
16
|
+
.version(pkg.version)
|
|
17
|
+
.description(pkg.description + '\n\nPlease visit ' + chalk.yellow('https://github.com/macCesar/purgeTSS') + ' for details.')
|
|
19
18
|
.help('PurgeTSS will create a clean app.tss file with only the classes used in your XML Files.\n\nIt works with tailwind.tss, fontawesome.tss, materialdesignicons.tss, framework7icons.tss.\n\nYour original classes will be backed up in _app.tss.\n\nYou can create your own custom classes and values by running `purgetss init` and `purgetss build`.')
|
|
20
19
|
.option('-d, --debug', 'Show time taken to execute each process.')
|
|
21
20
|
.option('-a, --all', 'Run all processes. purgetss build-fonts, purgetss build and purgetss')
|
|
@@ -58,9 +57,8 @@ program
|
|
|
58
57
|
.description('Build a custom `tailwind.tss` file.')
|
|
59
58
|
.help('It will generate a new custom `tailwind.tss` file based on the attributes defined in `./purgetss/config.js`.\n\nIt will also generate a custom `fontawesome.tss` file if you installed the proper dependencies, like FontAwesome Beta or FontAwesome Pro.')
|
|
60
59
|
.action((args, options, logger) => {
|
|
61
|
-
|
|
62
|
-
// completions;
|
|
63
|
-
// completions.motherGooseClassGeneration();
|
|
60
|
+
// require('../testing-scripts/completions').completions();
|
|
61
|
+
// require('../testing-scripts/completions').completionsRevised();
|
|
64
62
|
});
|
|
65
63
|
|
|
66
64
|
program
|
package/dist/fontawesome.js
CHANGED
|
@@ -183,6 +183,7 @@ const icons = {
|
|
|
183
183
|
'bagShopping': '\uf290',
|
|
184
184
|
'shoppingBag': '\uf290',
|
|
185
185
|
'bahai': '\uf666',
|
|
186
|
+
'haykal': '\uf666',
|
|
186
187
|
'bahtSign': '\ue0ac',
|
|
187
188
|
'ban': '\uf05e',
|
|
188
189
|
'cancel': '\uf05e',
|
|
@@ -258,6 +259,8 @@ const icons = {
|
|
|
258
259
|
'quran': '\uf687',
|
|
259
260
|
'bookSkull': '\uf6b7',
|
|
260
261
|
'bookDead': '\uf6b7',
|
|
262
|
+
'bookTanakh': '\uf827',
|
|
263
|
+
'tanakh': '\uf827',
|
|
261
264
|
'bookmark': '\uf02e',
|
|
262
265
|
'borderAll': '\uf84c',
|
|
263
266
|
'borderNone': '\uf850',
|
|
@@ -327,6 +330,8 @@ const icons = {
|
|
|
327
330
|
'businessTime': '\uf64a',
|
|
328
331
|
'briefcaseClock': '\uf64a',
|
|
329
332
|
'c': '\u0043',
|
|
333
|
+
'cableCar': '\uf7da',
|
|
334
|
+
'tram': '\uf7da',
|
|
330
335
|
'cakeCandles': '\uf1fd',
|
|
331
336
|
'birthdayCake': '\uf1fd',
|
|
332
337
|
'cake': '\uf1fd',
|
|
@@ -751,12 +756,12 @@ const icons = {
|
|
|
751
756
|
'fileArrowUp': '\uf574',
|
|
752
757
|
'fileUpload': '\uf574',
|
|
753
758
|
'fileAudio': '\uf1c7',
|
|
754
|
-
'fileCircleCheck': '\
|
|
759
|
+
'fileCircleCheck': '\ue5a0',
|
|
755
760
|
'fileCircleExclamation': '\ue4eb',
|
|
756
761
|
'fileCircleMinus': '\ue4ed',
|
|
757
|
-
'fileCirclePlus': '\
|
|
762
|
+
'fileCirclePlus': '\ue494',
|
|
758
763
|
'fileCircleQuestion': '\ue4ef',
|
|
759
|
-
'fileCircleXmark': '\
|
|
764
|
+
'fileCircleXmark': '\ue5a1',
|
|
760
765
|
'fileCode': '\uf1c9',
|
|
761
766
|
'fileContract': '\uf56c',
|
|
762
767
|
'fileCsv': '\uf6dd',
|
|
@@ -983,11 +988,11 @@ const icons = {
|
|
|
983
988
|
'hotdog': '\uf80f',
|
|
984
989
|
'hotel': '\uf594',
|
|
985
990
|
'hourglass': '\uf254',
|
|
986
|
-
'
|
|
987
|
-
'hourglassHalf': '\uf254',
|
|
988
|
-
'hourglassEmpty': '\uf252',
|
|
991
|
+
'hourglassEmpty': '\uf254',
|
|
989
992
|
'hourglassEnd': '\uf253',
|
|
990
993
|
'hourglass3': '\uf253',
|
|
994
|
+
'hourglassHalf': '\uf252',
|
|
995
|
+
'hourglass2': '\uf252',
|
|
991
996
|
'hourglassStart': '\uf251',
|
|
992
997
|
'hourglass1': '\uf251',
|
|
993
998
|
'house': '\uf015',
|
|
@@ -1232,6 +1237,7 @@ const icons = {
|
|
|
1232
1237
|
'neuter': '\uf22c',
|
|
1233
1238
|
'newspaper': '\uf1ea',
|
|
1234
1239
|
'notEqual': '\uf53e',
|
|
1240
|
+
'notdef': '\ue1fe',
|
|
1235
1241
|
'noteSticky': '\uf249',
|
|
1236
1242
|
'stickyNote': '\uf249',
|
|
1237
1243
|
'notesMedical': '\uf481',
|
|
@@ -1273,8 +1279,8 @@ const icons = {
|
|
|
1273
1279
|
'edit': '\uf044',
|
|
1274
1280
|
'pencil': '\uf303',
|
|
1275
1281
|
'pencilAlt': '\uf303',
|
|
1276
|
-
'peopleArrowsLeftRight': '\ue068',
|
|
1277
1282
|
'peopleArrows': '\ue068',
|
|
1283
|
+
'peopleArrowsLeftRight': '\ue068',
|
|
1278
1284
|
'peopleCarryBox': '\uf4ce',
|
|
1279
1285
|
'peopleCarry': '\uf4ce',
|
|
1280
1286
|
'peopleGroup': '\ue533',
|
|
@@ -1337,7 +1343,7 @@ const icons = {
|
|
|
1337
1343
|
'snowboarding': '\uf7ce',
|
|
1338
1344
|
'personSwimming': '\uf5c4',
|
|
1339
1345
|
'swimmer': '\uf5c4',
|
|
1340
|
-
'personThroughWindow': '\
|
|
1346
|
+
'personThroughWindow': '\ue5a9',
|
|
1341
1347
|
'personWalking': '\uf554',
|
|
1342
1348
|
'walking': '\uf554',
|
|
1343
1349
|
'personWalkingArrowLoopLeft': '\ue551',
|
|
@@ -1369,7 +1375,7 @@ const icons = {
|
|
|
1369
1375
|
'planeLock': '\ue558',
|
|
1370
1376
|
'planeSlash': '\ue069',
|
|
1371
1377
|
'planeUp': '\ue22d',
|
|
1372
|
-
'plantWilt': '\
|
|
1378
|
+
'plantWilt': '\ue5aa',
|
|
1373
1379
|
'plateWheat': '\ue55a',
|
|
1374
1380
|
'play': '\uf04b',
|
|
1375
1381
|
'plug': '\uf1e6',
|
|
@@ -1634,12 +1640,13 @@ const icons = {
|
|
|
1634
1640
|
'squareXmark': '\uf2d3',
|
|
1635
1641
|
'timesSquare': '\uf2d3',
|
|
1636
1642
|
'xmarkSquare': '\uf2d3',
|
|
1637
|
-
'
|
|
1643
|
+
'staffSnake': '\ue579',
|
|
1638
1644
|
'rodAsclepius': '\ue579',
|
|
1639
1645
|
'rodSnake': '\ue579',
|
|
1640
|
-
'
|
|
1646
|
+
'staffAesculapius': '\ue579',
|
|
1641
1647
|
'stairs': '\ue289',
|
|
1642
1648
|
'stamp': '\uf5bf',
|
|
1649
|
+
'stapler': '\ue5af',
|
|
1643
1650
|
'star': '\uf005',
|
|
1644
1651
|
'starAndCrescent': '\uf699',
|
|
1645
1652
|
'starHalf': '\uf089',
|
|
@@ -1770,8 +1777,7 @@ const icons = {
|
|
|
1770
1777
|
'train': '\uf238',
|
|
1771
1778
|
'trainSubway': '\uf239',
|
|
1772
1779
|
'subway': '\uf239',
|
|
1773
|
-
'trainTram': '\
|
|
1774
|
-
'tram': '\uf7da',
|
|
1780
|
+
'trainTram': '\ue5b4',
|
|
1775
1781
|
'transgender': '\uf225',
|
|
1776
1782
|
'transgenderAlt': '\uf225',
|
|
1777
1783
|
'trash': '\uf1f8',
|
|
@@ -2004,7 +2010,6 @@ const icons = {
|
|
|
2004
2010
|
'bandcamp': '\uf2d5',
|
|
2005
2011
|
'battleNet': '\uf835',
|
|
2006
2012
|
'behance': '\uf1b4',
|
|
2007
|
-
'behanceSquare': '\uf1b5',
|
|
2008
2013
|
'bilibili': '\ue3d9',
|
|
2009
2014
|
'bimobject': '\uf378',
|
|
2010
2015
|
'bitbucket': '\uf171',
|
|
@@ -2088,7 +2093,6 @@ const icons = {
|
|
|
2088
2093
|
'docker': '\uf395',
|
|
2089
2094
|
'draft2digital': '\uf396',
|
|
2090
2095
|
'dribbble': '\uf17d',
|
|
2091
|
-
'dribbbleSquare': '\uf397',
|
|
2092
2096
|
'dropbox': '\uf16b',
|
|
2093
2097
|
'drupal': '\uf1a9',
|
|
2094
2098
|
'dyalog': '\uf399',
|
|
@@ -2109,7 +2113,6 @@ const icons = {
|
|
|
2109
2113
|
'facebook': '\uf09a',
|
|
2110
2114
|
'facebookF': '\uf39e',
|
|
2111
2115
|
'facebookMessenger': '\uf39f',
|
|
2112
|
-
'facebookSquare': '\uf082',
|
|
2113
2116
|
'fantasyFlightGames': '\uf6dc',
|
|
2114
2117
|
'fedex': '\uf797',
|
|
2115
2118
|
'fedora': '\uf798',
|
|
@@ -2141,10 +2144,8 @@ const icons = {
|
|
|
2141
2144
|
'ggCircle': '\uf261',
|
|
2142
2145
|
'git': '\uf1d3',
|
|
2143
2146
|
'gitAlt': '\uf841',
|
|
2144
|
-
'gitSquare': '\uf1d2',
|
|
2145
2147
|
'github': '\uf09b',
|
|
2146
2148
|
'githubAlt': '\uf113',
|
|
2147
|
-
'githubSquare': '\uf092',
|
|
2148
2149
|
'gitkraken': '\uf3a6',
|
|
2149
2150
|
'gitlab': '\uf296',
|
|
2150
2151
|
'gitter': '\uf426',
|
|
@@ -2160,7 +2161,6 @@ const icons = {
|
|
|
2160
2161
|
'googlePlay': '\uf3ab',
|
|
2161
2162
|
'googlePlus': '\uf2b3',
|
|
2162
2163
|
'googlePlusG': '\uf0d5',
|
|
2163
|
-
'googlePlusSquare': '\uf0d4',
|
|
2164
2164
|
'googleWallet': '\uf1ee',
|
|
2165
2165
|
'gratipay': '\uf184',
|
|
2166
2166
|
'grav': '\uf2d6',
|
|
@@ -2169,7 +2169,6 @@ const icons = {
|
|
|
2169
2169
|
'guilded': '\ue07e',
|
|
2170
2170
|
'gulp': '\uf3ae',
|
|
2171
2171
|
'hackerNews': '\uf1d4',
|
|
2172
|
-
'hackerNewsSquare': '\uf3af',
|
|
2173
2172
|
'hackerrank': '\uf5f7',
|
|
2174
2173
|
'hashnode': '\ue499',
|
|
2175
2174
|
'hips': '\uf452',
|
|
@@ -2184,7 +2183,6 @@ const icons = {
|
|
|
2184
2183
|
'ideal': '\ue013',
|
|
2185
2184
|
'imdb': '\uf2d8',
|
|
2186
2185
|
'instagram': '\uf16d',
|
|
2187
|
-
'instagramSquare': '\ue055',
|
|
2188
2186
|
'instalod': '\ue081',
|
|
2189
2187
|
'intercom': '\uf7af',
|
|
2190
2188
|
'internetExplorer': '\uf26b',
|
|
@@ -2200,7 +2198,6 @@ const icons = {
|
|
|
2200
2198
|
'joget': '\uf3b7',
|
|
2201
2199
|
'joomla': '\uf1aa',
|
|
2202
2200
|
'js': '\uf3b8',
|
|
2203
|
-
'jsSquare': '\uf3b9',
|
|
2204
2201
|
'jsfiddle': '\uf1cc',
|
|
2205
2202
|
'kaggle': '\uf5fa',
|
|
2206
2203
|
'keybase': '\uf4f5',
|
|
@@ -2210,7 +2207,6 @@ const icons = {
|
|
|
2210
2207
|
'korvue': '\uf42f',
|
|
2211
2208
|
'laravel': '\uf3bd',
|
|
2212
2209
|
'lastfm': '\uf202',
|
|
2213
|
-
'lastfmSquare': '\uf203',
|
|
2214
2210
|
'leanpub': '\uf212',
|
|
2215
2211
|
'less': '\uf41d',
|
|
2216
2212
|
'line': '\uf3c0',
|
|
@@ -2233,6 +2229,7 @@ const icons = {
|
|
|
2233
2229
|
'meetup': '\uf2e0',
|
|
2234
2230
|
'megaport': '\uf5a3',
|
|
2235
2231
|
'mendeley': '\uf7b3',
|
|
2232
|
+
'meta': '\ue49b',
|
|
2236
2233
|
'microblog': '\ue01a',
|
|
2237
2234
|
'microsoft': '\uf3ca',
|
|
2238
2235
|
'mix': '\uf3cb',
|
|
@@ -2253,7 +2250,6 @@ const icons = {
|
|
|
2253
2250
|
'nutritionix': '\uf3d6',
|
|
2254
2251
|
'octopusDeploy': '\ue082',
|
|
2255
2252
|
'odnoklassniki': '\uf263',
|
|
2256
|
-
'odnoklassnikiSquare': '\uf264',
|
|
2257
2253
|
'oldRepublic': '\uf510',
|
|
2258
2254
|
'opencart': '\uf23d',
|
|
2259
2255
|
'openid': '\uf19b',
|
|
@@ -2277,10 +2273,8 @@ const icons = {
|
|
|
2277
2273
|
'piedPiperAlt': '\uf1a8',
|
|
2278
2274
|
'piedPiperHat': '\uf4e5',
|
|
2279
2275
|
'piedPiperPp': '\uf1a7',
|
|
2280
|
-
'piedPiperSquare': '\ue01e',
|
|
2281
2276
|
'pinterest': '\uf0d2',
|
|
2282
2277
|
'pinterestP': '\uf231',
|
|
2283
|
-
'pinterestSquare': '\uf0d3',
|
|
2284
2278
|
'pix': '\ue43a',
|
|
2285
2279
|
'playstation': '\uf3df',
|
|
2286
2280
|
'productHunt': '\uf288',
|
|
@@ -2299,7 +2293,6 @@ const icons = {
|
|
|
2299
2293
|
'redRiver': '\uf3e3',
|
|
2300
2294
|
'reddit': '\uf1a1',
|
|
2301
2295
|
'redditAlien': '\uf281',
|
|
2302
|
-
'redditSquare': '\uf1a2',
|
|
2303
2296
|
'redhat': '\uf7bc',
|
|
2304
2297
|
'renren': '\uf18b',
|
|
2305
2298
|
'replyd': '\uf3e6',
|
|
@@ -2334,22 +2327,69 @@ const icons = {
|
|
|
2334
2327
|
'slideshare': '\uf1e7',
|
|
2335
2328
|
'snapchat': '\uf2ab',
|
|
2336
2329
|
'snapchatGhost': '\uf2ab',
|
|
2337
|
-
'snapchatSquare': '\uf2ad',
|
|
2338
2330
|
'soundcloud': '\uf1be',
|
|
2339
2331
|
'sourcetree': '\uf7d3',
|
|
2332
|
+
'spaceAwesome': '\ue5ac',
|
|
2340
2333
|
'speakap': '\uf3f3',
|
|
2341
2334
|
'speakerDeck': '\uf83c',
|
|
2342
2335
|
'spotify': '\uf1bc',
|
|
2343
|
-
'
|
|
2336
|
+
'squareBehance': '\uf1b5',
|
|
2337
|
+
'behanceSquare': '\uf1b5',
|
|
2338
|
+
'squareDribbble': '\uf397',
|
|
2339
|
+
'dribbbleSquare': '\uf397',
|
|
2340
|
+
'squareFacebook': '\uf082',
|
|
2341
|
+
'facebookSquare': '\uf082',
|
|
2342
|
+
'squareFontAwesome': '\ue5ad',
|
|
2344
2343
|
'squareFontAwesomeStroke': '\uf35c',
|
|
2345
2344
|
'fontAwesomeAlt': '\uf35c',
|
|
2345
|
+
'squareGit': '\uf1d2',
|
|
2346
|
+
'gitSquare': '\uf1d2',
|
|
2347
|
+
'squareGithub': '\uf092',
|
|
2348
|
+
'githubSquare': '\uf092',
|
|
2349
|
+
'squareGitlab': '\ue5ae',
|
|
2350
|
+
'gitlabSquare': '\ue5ae',
|
|
2351
|
+
'squareGooglePlus': '\uf0d4',
|
|
2352
|
+
'googlePlusSquare': '\uf0d4',
|
|
2353
|
+
'squareHackerNews': '\uf3af',
|
|
2354
|
+
'hackerNewsSquare': '\uf3af',
|
|
2355
|
+
'squareInstagram': '\ue055',
|
|
2356
|
+
'instagramSquare': '\ue055',
|
|
2357
|
+
'squareJs': '\uf3b9',
|
|
2358
|
+
'jsSquare': '\uf3b9',
|
|
2359
|
+
'squareLastfm': '\uf203',
|
|
2360
|
+
'lastfmSquare': '\uf203',
|
|
2361
|
+
'squareOdnoklassniki': '\uf264',
|
|
2362
|
+
'odnoklassnikiSquare': '\uf264',
|
|
2363
|
+
'squarePiedPiper': '\ue01e',
|
|
2364
|
+
'piedPiperSquare': '\ue01e',
|
|
2365
|
+
'squarePinterest': '\uf0d3',
|
|
2366
|
+
'pinterestSquare': '\uf0d3',
|
|
2367
|
+
'squareReddit': '\uf1a2',
|
|
2368
|
+
'redditSquare': '\uf1a2',
|
|
2369
|
+
'squareSnapchat': '\uf2ad',
|
|
2370
|
+
'snapchatSquare': '\uf2ad',
|
|
2371
|
+
'squareSteam': '\uf1b7',
|
|
2372
|
+
'steamSquare': '\uf1b7',
|
|
2373
|
+
'squareTumblr': '\uf174',
|
|
2374
|
+
'tumblrSquare': '\uf174',
|
|
2375
|
+
'squareTwitter': '\uf081',
|
|
2376
|
+
'twitterSquare': '\uf081',
|
|
2377
|
+
'squareViadeo': '\uf2aa',
|
|
2378
|
+
'viadeoSquare': '\uf2aa',
|
|
2379
|
+
'squareVimeo': '\uf194',
|
|
2380
|
+
'vimeoSquare': '\uf194',
|
|
2381
|
+
'squareWhatsapp': '\uf40c',
|
|
2382
|
+
'whatsappSquare': '\uf40c',
|
|
2383
|
+
'squareXing': '\uf169',
|
|
2384
|
+
'xingSquare': '\uf169',
|
|
2385
|
+
'squareYoutube': '\uf431',
|
|
2386
|
+
'youtubeSquare': '\uf431',
|
|
2346
2387
|
'squarespace': '\uf5be',
|
|
2347
2388
|
'stackExchange': '\uf18d',
|
|
2348
2389
|
'stackOverflow': '\uf16c',
|
|
2349
2390
|
'stackpath': '\uf842',
|
|
2350
2391
|
'staylinked': '\uf3f5',
|
|
2351
2392
|
'steam': '\uf1b6',
|
|
2352
|
-
'steamSquare': '\uf1b7',
|
|
2353
2393
|
'steamSymbol': '\uf3f6',
|
|
2354
2394
|
'stickerMule': '\uf3f7',
|
|
2355
2395
|
'strava': '\uf428',
|
|
@@ -2375,10 +2415,8 @@ const icons = {
|
|
|
2375
2415
|
'tradeFederation': '\uf513',
|
|
2376
2416
|
'trello': '\uf181',
|
|
2377
2417
|
'tumblr': '\uf173',
|
|
2378
|
-
'tumblrSquare': '\uf174',
|
|
2379
2418
|
'twitch': '\uf1e8',
|
|
2380
2419
|
'twitter': '\uf099',
|
|
2381
|
-
'twitterSquare': '\uf081',
|
|
2382
2420
|
'typo3': '\uf42b',
|
|
2383
2421
|
'uber': '\uf402',
|
|
2384
2422
|
'ubuntu': '\uf7df',
|
|
@@ -2396,10 +2434,8 @@ const icons = {
|
|
|
2396
2434
|
'vaadin': '\uf408',
|
|
2397
2435
|
'viacoin': '\uf237',
|
|
2398
2436
|
'viadeo': '\uf2a9',
|
|
2399
|
-
'viadeoSquare': '\uf2aa',
|
|
2400
2437
|
'viber': '\uf409',
|
|
2401
2438
|
'vimeo': '\uf40a',
|
|
2402
|
-
'vimeoSquare': '\uf194',
|
|
2403
2439
|
'vimeoV': '\uf27d',
|
|
2404
2440
|
'vine': '\uf1ca',
|
|
2405
2441
|
'vk': '\uf189',
|
|
@@ -2411,7 +2447,6 @@ const icons = {
|
|
|
2411
2447
|
'weibo': '\uf18a',
|
|
2412
2448
|
'weixin': '\uf1d7',
|
|
2413
2449
|
'whatsapp': '\uf232',
|
|
2414
|
-
'whatsappSquare': '\uf40c',
|
|
2415
2450
|
'whmcs': '\uf40d',
|
|
2416
2451
|
'wikipediaW': '\uf266',
|
|
2417
2452
|
'windows': '\uf17a',
|
|
@@ -2427,9 +2462,9 @@ const icons = {
|
|
|
2427
2462
|
'wpexplorer': '\uf2de',
|
|
2428
2463
|
'wpforms': '\uf298',
|
|
2429
2464
|
'wpressr': '\uf3e4',
|
|
2465
|
+
'rendact': '\uf3e4',
|
|
2430
2466
|
'xbox': '\uf412',
|
|
2431
2467
|
'xing': '\uf168',
|
|
2432
|
-
'xingSquare': '\uf169',
|
|
2433
2468
|
'yCombinator': '\uf23b',
|
|
2434
2469
|
'yahoo': '\uf19e',
|
|
2435
2470
|
'yammer': '\uf840',
|
|
@@ -2439,7 +2474,6 @@ const icons = {
|
|
|
2439
2474
|
'yelp': '\uf1e9',
|
|
2440
2475
|
'yoast': '\uf2b1',
|
|
2441
2476
|
'youtube': '\uf167',
|
|
2442
|
-
'youtubeSquare': '\uf431',
|
|
2443
2477
|
'zhihu': '\uf63f',
|
|
2444
2478
|
};
|
|
2445
2479
|
exports.icons = icons;
|