Skip to content

Commit

Permalink
0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Jun 4, 2022
1 parent e635f2e commit 5c55bc1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.8

- Updates README.md

## 0.0.7

- Introduces sharp image processing
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This **[Astro integration][astro-integration]** brings compression utilities to
your Astro project.

[csso] [html-minifier-terser] [terser]
[csso] [html-minifier-terser] [terser] [sharp]

## Installation

Expand Down Expand Up @@ -63,6 +63,7 @@ You can override any of the default options from the configurations of:
- [csso](src/options/csso.ts)
- [html-minifier-terser](src/options/html-minifier-terser.ts)
- [terser](src/options/terser.ts)
- [sharp](src/options/sharp.ts)

or disable them entirely:

Expand All @@ -76,6 +77,7 @@ export default defineConfig({
css: false,
html: false,
js: false,
img: false,
}),
],
});
Expand All @@ -101,4 +103,5 @@ export default defineConfig({
[csso]: https://npmjs.org/csso
[html-minifier-terser]: https://npmjs.org/html-minifier-terser
[terser]: https://npmjs.org/terser
[sharp]: https://npmjs.org/sharp
[astro-integration]: https://docs.astro.build/en/guides/integrations-guide/
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "astro-compress",
"version": "0.0.7",
"version": "0.0.8",
"type": "module",
"description": "🗜️ AstroJS compression utilities. Compress HTML, CSS, JavaScript and more.",
"repository": {
Expand Down

0 comments on commit 5c55bc1

Please sign in to comment.