Comparing version 0.1.8 to 0.1.9
@@ -5,2 +5,9 @@ # Changelog | ||
### [0.1.9](https://github.com/shinokada/bimgc/compare/v0.1.8...v0.1.9) (2023-02-06) | ||
### Bug Fixes | ||
* pwa update ([b376f5f](https://github.com/shinokada/bimgc/commit/b376f5fd1c9ee1ff1e2db17918585e416c996e89)) | ||
### [0.1.8](https://github.com/shinokada/bimgc/compare/v0.1.7...v0.1.8) (2023-02-05) | ||
@@ -7,0 +14,0 @@ |
{ | ||
"name": "bimgc", | ||
"version": "0.1.8", | ||
"version": "0.1.9", | ||
"description": "A node.js script that converts PNG and JPG images to AVIF and WebP format with various sizes and saves them in a specified output directory. The output images are named based on the input file and include information about their size and format.", | ||
@@ -5,0 +5,0 @@ "main": "bin/index.js", |
@@ -1,3 +0,36 @@ | ||
# bimgc - Batch Image Converter | ||
<h1 align="center">BIMGC</h1> | ||
<p align="center"> | ||
<a href="https://bimgc.codewithshin.com/" rel="nofollow">Batch Image Converter</a> | ||
</p> | ||
<p align="center"> | ||
<a href="https://github.com/sponsors/shinokada" target="_blank"><img src="https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86" alt="Sponsor" height="22" width="102"></a> | ||
<a href="https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps"><img src="https://img.shields.io/badge/PWA-enabled-brightgreen" alt="PWA Shield"></a> | ||
<a href="https://www.npmjs.com/package/bimgc" rel="nofollow" target="_blank"><img src="https://img.shields.io/npm/v/bimgc" alt="npm" height="22" width="97"></a> | ||
<a href="https://twitter.com/shinokada" rel="nofollow" target="_blank"><img src="https://img.shields.io/badge/created%20by-@shinokada-4BBAAB.svg" alt="Created by Shin Okada" height="22" width="161"></a> | ||
<a href="https://opensource.org/licenses/MIT" rel="nofollow" target="_blank"><img src="https://img.shields.io/github/license/shinokada/bimgc" alt="License" height="22" width="86"></a> | ||
<a href="https://www.npmjs.com/package/bimgc" rel="nofollow" target="_blank"><img src="https://img.shields.io/npm/dw/bimgc.svg" alt="npm" height="22" width="152"></a> | ||
</p> | ||
<picture> | ||
<source | ||
type="image/avif" | ||
srcset="public/images/bimgc-100.avif?width=100 100w, public/images/bimgc-200.avif?width=200 200w, public/images/bimgc-400.avif?width=400 400w, public/images/bimgc-800.avif?width=800 800w" /> | ||
<source | ||
type="image/webp" | ||
srcset="public/images/bimgc-100.webp?width=100 100w, public/images/bimgc-200.webp?width=200 200w, public/images/bimgc-400.webp?width=400 400w, public/images/bimgc-800.webp?width=800 800w" /> | ||
<img | ||
src="public/images/bimgc.png" | ||
srcset="public/images/bimgc-100.png?width=100 100w, public/images/bimgc-200.png?width=200 200w, public/images/bimgc-400.png?width=400 400w, public/images/bimgc-800.png?width=800 800w" | ||
sizes="(max-width: 800px) 100vw, 50vw" | ||
style="width: 100%; aspect-ratio: 1.619047619047619" | ||
loading="lazy" | ||
decoding="async" | ||
alt="My awesome image" | ||
/> | ||
</picture> | ||
A CLI tool for converting PNG and JPG images to AVIF and WebP format with various sizes and saves them in a specified output directory. The output images are named based on the input file and include information about their size and format. | ||
@@ -4,0 +37,0 @@ |
@@ -11,3 +11,3 @@ // Change this to your repository name | ||
// users the old files! | ||
const VERSION = 'version_02'; | ||
const VERSION = 'version_03'; | ||
@@ -14,0 +14,0 @@ // The files to make available for offline use. make sure to add |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
50904
96