favgen 0.0.1 → 0.0.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 +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ![npm](https://img.shields.io/npm/v/favgen?style=flat-square)
1
+ [![npm](https://img.shields.io/npm/v/favgen?style=flat-square)](https://www.npmjs.com/package/favgen)
2
2
 
3
3
  This is a simple CLI tool to generate an optimized set of favicons from a single input file. Icons are optimized in terms of both size and quantity (nowadays you don't that many of them). They are produced according to [this article](https://evilmartians.com/chronicles/how-to-favicon-in-2021-six-files-that-fit-most-needs) which served as an inspiration for the tool.
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "favgen",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "CLI tool to generate a set of favicons from a single input file.",
5
5
  "keywords": [
6
6
  "favicon"
@@ -23,8 +23,8 @@
23
23
  "build": "tsc --project tsconfig.json",
24
24
  "build:dev": "tsc --watch --project tsconfig.json",
25
25
  "prepublishOnly": "npm run build",
26
- "preinstall": "husky install && husky add .husky/pre-commit 'npx lint-staged' && git add .husky/pre-commit",
27
26
  "postinstall": "npm run build",
27
+ "huskify": "husky install && husky add .husky/pre-commit 'npx lint-staged' && git add .husky/pre-commit",
28
28
  "lint": "eslint --ext .js,.cjs,.mjs,.ts,.cts,.mts --fix --ignore-path .gitignore --cache",
29
29
  "prettify": "prettier --write --ignore-path .gitignore --plugin-search-dir=."
30
30
  },