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 CHANGED
@@ -19,7 +19,7 @@
19
19
  ------
20
20
 
21
21
  ## Some key features of PurgeTSS
22
- - Provides more than 8700 [Tailwind-like utility classes](https://tailwindcss.com/) ready to use in your projects.
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`.
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
  });