purgetss 5.3.9 → 5.3.10
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 +1 -1
- package/dist/fontawesome.js +3 -1
- package/dist/fontawesome.tss +3 -1
- package/lib/templates/fontawesome/free-template.js +1 -1
- package/lib/templates/fontawesome/free-template.tss +1 -1
- package/lib/templates/fontawesome/pro-reset.tss +1 -1
- package/lib/templates/fontawesome/pro-template.js +1 -1
- package/lib/templates/fontawesome/pro-template.tss +1 -1
- package/package.json +2 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/purgetss
CHANGED
|
@@ -16,7 +16,7 @@ if (notifier.update && notifier.update.latest !== pkg.version) {
|
|
|
16
16
|
program
|
|
17
17
|
.version(package.version)
|
|
18
18
|
.description(package.description + '\n\nPlease visit ' + chalk.yellow('https://github.com/macCesar/purgeTSS') + ' for details.')
|
|
19
|
-
.help('PurgeTSS will create a clean app.tss file
|
|
19
|
+
.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
20
|
.option('-d, --debug', 'Show time taken to execute each process.')
|
|
21
21
|
.option('-a, --all', 'Run all processes. purgetss build-fonts, purgetss build and purgetss')
|
|
22
22
|
.action((args, options, logger) => {
|
package/dist/fontawesome.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Font Awesome Free 6.1.
|
|
2
|
+
* Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
|
|
3
3
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -416,6 +416,8 @@ const icons = {
|
|
|
416
416
|
'chevronRight': '\uf054',
|
|
417
417
|
'chevronUp': '\uf077',
|
|
418
418
|
'child': '\uf1ae',
|
|
419
|
+
'childDress': '\ue59c',
|
|
420
|
+
'childReaching': '\ue59d',
|
|
419
421
|
'childRifle': '\ue4e0',
|
|
420
422
|
'children': '\ue4e1',
|
|
421
423
|
'church': '\uf51d',
|
package/dist/fontawesome.tss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Font Awesome Free 6.1.
|
|
1
|
+
// Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
|
|
2
2
|
// License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
3
3
|
|
|
4
4
|
// Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons
|
|
@@ -424,6 +424,8 @@
|
|
|
424
424
|
'.fa-chevron-right': { text: '\uf054', title: '\uf054' }
|
|
425
425
|
'.fa-chevron-up': { text: '\uf077', title: '\uf077' }
|
|
426
426
|
'.fa-child': { text: '\uf1ae', title: '\uf1ae' }
|
|
427
|
+
'.fa-child-dress': { text: '\ue59c', title: '\ue59c' }
|
|
428
|
+
'.fa-child-reaching': { text: '\ue59d', title: '\ue59d' }
|
|
427
429
|
'.fa-child-rifle': { text: '\ue4e0', title: '\ue4e0' }
|
|
428
430
|
'.fa-children': { text: '\ue4e1', title: '\ue4e1' }
|
|
429
431
|
'.fa-church': { text: '\uf51d', title: '\uf51d' }
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Font Awesome Free 6.1.
|
|
1
|
+
// Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
|
|
2
2
|
// License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
3
3
|
|
|
4
4
|
// Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Font Awesome Pro 6
|
|
1
|
+
// Font Awesome Pro 6 by @fontawesome - https://fontawesome.com
|
|
2
2
|
// License - https://fontawesome.com/license (Commercial License)
|
|
3
3
|
|
|
4
4
|
// Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "purgetss",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.10",
|
|
4
4
|
"description": "An extension for Titanium SDK that contains a set of Tailwind-like classes to easily and quickly create beautifully designed mobile apps.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"homepage": "https://github.com/macCesar/purgeTSS#readme",
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@fortawesome/fontawesome-free": "^6.1.
|
|
43
|
+
"@fortawesome/fontawesome-free": "^6.1.1",
|
|
44
44
|
"caporal": "^1.4.0",
|
|
45
45
|
"chalk": "^4.1.2",
|
|
46
46
|
"command-exists": "^1.2.9",
|