Skip to content

Commit

Permalink
chore(main): release 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
prjctimg committed Aug 9, 2024
1 parent b42921e commit be6ddf1
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 12 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [3.0.1](https://github.com/prjctimg/huetiful/compare/v2.3.0...v3.0.1) (2024-08-09)


### Performance Improvements

* added missing file ([3069d35](https://github.com/prjctimg/huetiful/commit/3069d35f5a75908050e0afd6acde8e96545f5791))
* created index file for palettes subdir ([046f770](https://github.com/prjctimg/huetiful/commit/046f7709d05cb2dee490e3eb20ef6fa41acda5c7))
* created index file for palettes subdir ([4b312c4](https://github.com/prjctimg/huetiful/commit/4b312c4ad8c226e7804c46409521d1482a07a573))


### Miscellaneous Chores

* release 3.0.0 ([67391c2](https://github.com/prjctimg/huetiful/commit/67391c29a60ed5964c98e7e27f73d051bdacbc22))
* release 3.0.1 ([253655e](https://github.com/prjctimg/huetiful/commit/253655ec1dcf65752160a93f453fcc7d27a81975))

## [2.3.0](https://github.com/xml-wizard/huetiful/compare/v2.2.0...v2.3.0) (2024-04-08)


Expand Down
36 changes: 24 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "huetiful-js",
"version": "2.3.0",
"version": "3.0.1",
"type": "module",
"module": "./lib/huetiful.esm.js",
"main": "./src/index.js",
Expand All @@ -15,7 +15,7 @@
"./wrappers": "./src/wrappers/index.js",
"./palettes": "./src/palettes/index.js",
"./constants": "./src/constants/index.js",
"./utils": "./src/utils/index.js"
"./utilities": "./src/utilities/index.js"
},
"description": "JavaScript utility library for simple 🧮, fast ⏱️ and accessible ♿ color manipulation.",
"dependencies": {
Expand All @@ -26,7 +26,7 @@
"commitizen": "^4.3.0",
"cz-emoji-conventional": "^1.0.2",
"esbuild": "^0.17.19",
"eslint": "^8.57.0",
"eslint": "^8.53.0",
"jasmine": "5.1.0",
"nodemon": "^3.0.1",
"prettier": "^3.2.0",
Expand All @@ -42,7 +42,7 @@
"build": "node ./jobs/build.cjs",
"code:publish": "npm run build & npx tsc",
"format": "npx prettier \"./src/*.js\" --write",
"lint": "npx eslint --fix --ext ./src/*/index.js",
"lint": "npx eslint --fix --ext ./src/*.js",
"start": "npx nodemon app.js --watch"
},
"prettier": {
Expand All @@ -64,17 +64,25 @@
"./src/utilities/index.js",
"./src/wrappers/index.js"
],
"excludeTags": ["@internal"],
"excludeTags": [
"@internal"
],
"outputFileStrategy": "modules",
"fileExtension": ".mdx",
"entryFileName": "index",
"entryModule": "./docs/index.mdx",
"expandObjects": true,
"excludeNotDocumented": true,
"excludeReferences": false,
"plugin": ["typedoc-plugin-markdown", "typedoc-plugin-remark"],
"plugin": [
"typedoc-plugin-markdown",
"typedoc-plugin-remark"
],
"entryPointStrategy": "resolve",
"out": ".temp",
"exclude": ["./internal"],
"exclude": [
"./internal"
],
"groupOrder": [
"Function",
"Class",
Expand All @@ -87,24 +95,28 @@
"hidePageHeader": true,
"hideGroupHeadings": false,
"tsconfig": "./tsconfig.json",
"disableSources": true
"gitRemote": "main"
},
"eslintIgnore": ["*.cjs", ".mjs"],
"eslintIgnore": [
"*.cjs",
".mjs"
],
"config": {
"commitizen": {
"path": "cz-emoji-conventional"
}
},
"eslintConfig": {
"root": true,
"rules": {
"prefer-const": 0,
"no-console": 1,
"no-ternary": 0,
"no-var": 1,
"no-var": 0,
"no-explicit-any": 0,
"no-useless-escape": 0
},
"parserOptions": { "sourceType": "module", "ecmaVersion": "latest" }
"sourceType": "module"
},
"files": [
"lib",
Expand Down Expand Up @@ -144,7 +156,7 @@
"homepage": "https://huetiful-js.com",
"license": "Apache-2.0",
"engines": {
"node": "^14.13.1 || >=16.0.0"
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"bugs": {
"url": "https://github.com/prjctimg/huetiful/issues"
Expand Down

0 comments on commit be6ddf1

Please sign in to comment.