From f26b86854fcd1d61596ed4987e230c5398addbcb Mon Sep 17 00:00:00 2001 From: indaco Date: Thu, 2 Nov 2023 17:25:36 +0100 Subject: [PATCH] chore: release v6.0.1 --- .changes/6.0.1.md | 26 +++++++++ CHANGELOG.md | 27 +++++++++ package.json | 140 +++++++++++++++++++++++----------------------- 3 files changed, 123 insertions(+), 70 deletions(-) create mode 100644 .changes/6.0.1.md diff --git a/.changes/6.0.1.md b/.changes/6.0.1.md new file mode 100644 index 0000000..1b26f91 --- /dev/null +++ b/.changes/6.0.1.md @@ -0,0 +1,26 @@ +## 6.0.1 - 2023-11-02 + +[compare changes](https://github.com/indaco/svelte-iconoir/compare/v6.0.0...v6.0.1) + +### ⛑️ Fixes + +- **scripts/buildIconsDataset.ts:** Sizes from rem to em ([a1ad84c](https://github.com/indaco/svelte-iconoir/commit/a1ad84c)) + +### 💅 Refactors + +- Icon components use the new IconBase component ([6a2efcb](https://github.com/indaco/svelte-iconoir/commit/6a2efcb)) + +### 📖 Documentation + +- **README.md:** Updated ([84d64a0](https://github.com/indaco/svelte-iconoir/commit/84d64a0)) +- **README.md:** Updated ([a12ce58](https://github.com/indaco/svelte-iconoir/commit/a12ce58)) + +### 🏡 Chore + +- **dev-deps:** Add scule ([2f4b650](https://github.com/indaco/svelte-iconoir/commit/2f4b650)) +- **.gitignore:** Updated ([39d2f8b](https://github.com/indaco/svelte-iconoir/commit/39d2f8b)) +- Demo page update ([f5980ef](https://github.com/indaco/svelte-iconoir/commit/f5980ef)) + +### ❤️ Contributors + +- Indaco diff --git a/CHANGELOG.md b/CHANGELOG.md index c9af609..ac610a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file. The format adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [changelogen](https://github.com/unjs/changelogen) and managed with [Changie](https://github.com/miniscruff/changie). +## 6.0.1 - 2023-11-02 + +[compare changes](https://github.com/indaco/svelte-iconoir/compare/v6.0.0...v6.0.1) + +### ⛑️ Fixes + +- **scripts/buildIconsDataset.ts:** Sizes from rem to em ([a1ad84c](https://github.com/indaco/svelte-iconoir/commit/a1ad84c)) + +### 💅 Refactors + +- Icon components use the new `IconBase` component ([6a2efcb](https://github.com/indaco/svelte-iconoir/commit/6a2efcb)) + +### 📖 Documentation + +- **README.md:** Updated ([84d64a0](https://github.com/indaco/svelte-iconoir/commit/84d64a0)) +- **README.md:** Updated ([a12ce58](https://github.com/indaco/svelte-iconoir/commit/a12ce58)) + +### 🏡 Chore + +- **dev-deps:** Add scule ([2f4b650](https://github.com/indaco/svelte-iconoir/commit/2f4b650)) +- **.gitignore:** Updated ([39d2f8b](https://github.com/indaco/svelte-iconoir/commit/39d2f8b)) +- Demo page update ([f5980ef](https://github.com/indaco/svelte-iconoir/commit/f5980ef)) + +### ❤️ Contributors + +- Indaco + ## 6.0.0 - 2023-11-01 [compare changes](https://github.com/indaco/svelte-iconoir/compare/v5.0.1...v6.0.0) diff --git a/package.json b/package.json index 1179dd3..1ffb653 100644 --- a/package.json +++ b/package.json @@ -1,71 +1,71 @@ { - "name": "@indaco/svelte-iconoir", - "version": "6.0.0", - "type": "module", - "packageManager": "pnpm@8.10.1", - "author": "indaco ", - "description": "Iconoir SVG icons as Svelte components.", - "license": "MIT", - "keywords": [ - "iconoir", - "icons", - "icons-set", - "svelte", - "svelte components", - "sveltekit", - "svg-icons" - ], - "repository": { - "type": "git", - "url": "https://github.com/indaco/svelte-iconoir" - }, - "bugs": { - "url": "https://github.com/indaco/svelte-iconoir/issues" - }, - "peerDependencies": { - "svelte": "^3.59.1 || ^4.0.0" - }, - "devDependencies": { - "@sveltejs/adapter-auto": "^2.1.0", - "@sveltejs/kit": "^1.27.2", - "@sveltejs/package": "^2.2.2", - "@types/cli-progress": "^3.11.4", - "@types/svg-parser": "^2.0.5", - "@typescript-eslint/eslint-plugin": "^6.9.1", - "@typescript-eslint/parser": "^6.9.1", - "cli-progress": "^3.12.0", - "eslint": "^8.52.0", - "eslint-config-prettier": "^9.0.0", - "eslint-plugin-svelte": "^2.34.0", - "hast-util-to-html": "^9.0.0", - "picocolors": "1.0.0", - "prettier": "^3.0.3", - "prettier-plugin-svelte": "^3.0.3", - "publint": "^0.2.5", - "rimraf": "^5.0.5", - "scule": "^1.0.0", - "svelte-check": "^3.5.2", - "svg-parser": "^2.0.4", - "tslib": "^2.6.2", - "typescript": "^5.2.2", - "vite": "^4.5.0" - }, - "scripts": { - "build": "rimraf dist && pnpm sync && svelte-package", - "check": "pnpm sync && svelte-check --tsconfig ./tsconfig.json", - "check:watch": "pnpm sync && svelte-check --tsconfig ./tsconfig.json --watch", - "clean": "rimraf dist && pnpm compile && node build/scripts/cleanAll.js", - "compile": "tsc --outDir build/scripts", - "cpfiles": "node build/scripts/cpFiles.js", - "dev": "pnpm sync && vite dev", - "format": "prettier --write --plugin prettier-plugin-svelte --ignore-path ./.prettierignore .", - "generate:icons": "pnpm compile && pnpm clean && node build/scripts/buildIconsDataset.js", - "generate:pkgjson": "pnpm compile && node build/scripts/makeProdPkg.js", - "lint": "prettier --check . && eslint .", - "postbuild": "pnpm generate:pkgjson && pnpm cpfiles && pnpm exec publint ./dist", - "preview": "vite preview", - "sync": "svelte-kit sync" - }, - "sideEffects": false, - "svelte": "./index.js" -} + "name": "@indaco/svelte-iconoir", + "version": "6.0.1", + "type": "module", + "packageManager": "pnpm@8.10.1", + "author": "indaco ", + "description": "Iconoir SVG icons as Svelte components.", + "license": "MIT", + "keywords": [ + "iconoir", + "icons", + "icons-set", + "svelte", + "svelte components", + "sveltekit", + "svg-icons" + ], + "repository": { + "type": "git", + "url": "https://github.com/indaco/svelte-iconoir" + }, + "bugs": { + "url": "https://github.com/indaco/svelte-iconoir/issues" + }, + "peerDependencies": { + "svelte": "^3.59.1 || ^4.0.0" + }, + "devDependencies": { + "@sveltejs/adapter-auto": "^2.1.0", + "@sveltejs/kit": "^1.27.2", + "@sveltejs/package": "^2.2.2", + "@types/cli-progress": "^3.11.4", + "@types/svg-parser": "^2.0.5", + "@typescript-eslint/eslint-plugin": "^6.9.1", + "@typescript-eslint/parser": "^6.9.1", + "cli-progress": "^3.12.0", + "eslint": "^8.52.0", + "eslint-config-prettier": "^9.0.0", + "eslint-plugin-svelte": "^2.34.0", + "hast-util-to-html": "^9.0.0", + "picocolors": "1.0.0", + "prettier": "^3.0.3", + "prettier-plugin-svelte": "^3.0.3", + "publint": "^0.2.5", + "rimraf": "^5.0.5", + "scule": "^1.0.0", + "svelte-check": "^3.5.2", + "svg-parser": "^2.0.4", + "tslib": "^2.6.2", + "typescript": "^5.2.2", + "vite": "^4.5.0" + }, + "scripts": { + "build": "rimraf dist && pnpm sync && svelte-package", + "check": "pnpm sync && svelte-check --tsconfig ./tsconfig.json", + "check:watch": "pnpm sync && svelte-check --tsconfig ./tsconfig.json --watch", + "clean": "rimraf dist && pnpm compile && node build/scripts/cleanAll.js", + "compile": "tsc --outDir build/scripts", + "cpfiles": "node build/scripts/cpFiles.js", + "dev": "pnpm sync && vite dev", + "format": "prettier --write --plugin prettier-plugin-svelte --ignore-path ./.prettierignore .", + "generate:icons": "pnpm compile && pnpm clean && node build/scripts/buildIconsDataset.js", + "generate:pkgjson": "pnpm compile && node build/scripts/makeProdPkg.js", + "lint": "prettier --check . && eslint .", + "postbuild": "pnpm generate:pkgjson && pnpm cpfiles && pnpm exec publint ./dist", + "preview": "vite preview", + "sync": "svelte-kit sync" + }, + "sideEffects": false, + "svelte": "./index.js" +} \ No newline at end of file