astro-purgecss 1.2.1 → 1.2.2

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -91,6 +91,8 @@ export type PurgeCSSOptions = {
91
91
 
92
92
  To learn more about the available options, please refer to [PurgeCSS][purgecss-options] official docs.
93
93
 
94
+ We have also setup an example repository available here: [example-purgecss](../../apps/example-purgecss)
95
+
94
96
  ### Caveats
95
97
 
96
98
  - Certain options (ex: `css`, `content`), are not allowed to be passed in your `astro.config.mjs` config file, to not interfere with the internals of this integration.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "astro-purgecss",
3
3
  "description": "Remove unused CSS rules from your final Astro bundle",
4
- "version": "1.2.1",
4
+ "version": "1.2.2",
5
5
  "scripts": {
6
6
  "build": "astro-build --src src/**/*.ts",
7
7
  "postbuild": "npm run typecheck:emit",