purgetss 5.2.2 → 5.3.1
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/README.md +1 -1
- package/assets/images/class-completion-2.gif +0 -0
- package/bin/purgetss +1 -0
- package/dist/tailwind.tss +6425 -711
- package/docs/new-glossary.md +30 -28
- package/docs/whats-new/v5.2.1.md +1 -1
- package/docs/whats-new/v5.3.1.md +1850 -0
- package/index.js +291 -69
- package/lib/helpers.js +4981 -3192
- package/package.json +1 -1
- package/assets/images/class-completion.gif +0 -0
- package/old-index.js +0 -1980
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
------
|
|
20
20
|
|
|
21
21
|
## Some key features of PurgeTSS
|
|
22
|
-
- Provides more than
|
|
22
|
+
- Provides more than 10600 [Tailwind-like utility classes](https://tailwindcss.com/) ready to use in your projects.
|
|
23
23
|
- Creates a clean `app.tss` file with only the classes used in your project by parsing all your XML files.
|
|
24
24
|
- You can customize any of the default classes through a simple configuration file, or you can create new *just-in-time* classes with arbitrary values within the `Views`.
|
|
25
25
|
- You can easily use Font Awesome, Material Design and Framework7-Icons fonts in `Buttons` and `Labels`.
|
|
Binary file
|
package/bin/purgetss
CHANGED
|
@@ -17,6 +17,7 @@ program
|
|
|
17
17
|
.version(package.version)
|
|
18
18
|
.description(package.description + '\n\nPlease visit ' + chalk.yellow('https://github.com/macCesar/purgeTSS') + ' for details.')
|
|
19
19
|
.help('PurgeTSS will create a clean app.tss file by copying only the classes used in your XML Files.\n\nIt works with tailwind.tss, fontawesome.tss, materialdesignicons.tss, framework7icons.tss.\n\nALL your classes from your original app.tss file will be copied over without purging.\n\nYou can create your own custom classes and values by running `purgetss init` and `purgetss build`.')
|
|
20
|
+
.option('-d, --debug', 'Show time taken to execute each process.')
|
|
20
21
|
.action((args, options, logger) => {
|
|
21
22
|
purgetss.purgeClasses(options);
|
|
22
23
|
});
|