-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b34538
commit 313649e
Showing
3 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# 0.1.0 (2021-02-04) | ||
|
||
### Features | ||
|
||
- **blurhash:** convert blurhash to css | ||
([7b34538](https://github.com/JamieMason/blurhash-to-css/commit/7b345388a47f0b3cddd3c31e8ff9ae21f74cd16e)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# blurhash-to-css | ||
|
||
Convert a blurhash string to a CSS object | ||
|
||
## Installation | ||
|
||
This is a [Node.js](https://nodejs.org/) module available through the | ||
[npm registry](https://www.npmjs.com/). It can be installed using the | ||
[`npm`](https://docs.npmjs.com/getting-started/installing-npm-packages-locally) | ||
or [`yarn`](https://yarnpkg.com/en/) command line tools. | ||
|
||
```sh | ||
npm install blurhash-to-css --save | ||
``` | ||
|
||
## Dependencies | ||
|
||
- [@plaiceholder/css](https://ghub.io/@plaiceholder/css): Roll-you-own CSS | ||
gradient placeholders. | ||
- [blurhash](https://ghub.io/blurhash): Encoder and decoder for the Wolt | ||
BlurHash algorithm. | ||
- [sharp](https://ghub.io/sharp): High performance Node.js image processing, the | ||
fastest module to resize JPEG, PNG, WebP, AVIF and TIFF images | ||
|
||
## Dev Dependencies | ||
|
||
- [@types/sharp](https://ghub.io/@types/sharp): TypeScript definitions for sharp | ||
- [typescript](https://ghub.io/typescript): TypeScript is a language for | ||
application scale JavaScript development | ||
|
||
## License | ||
|
||
MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "blurhash-to-css", | ||
"description": "Convert a blurhash string to a CSS object", | ||
"version": "0.0.0", | ||
"version": "0.1.0", | ||
"author": "Jamie Mason <[email protected]> (https://github.com/JamieMason)", | ||
"bugs": "https://github.com/JamieMason/blurhash-to-css/issues", | ||
"dependencies": { | ||
|