Skip to content

Commit 90de586

Browse files
committed
chore: Bump color-core to version 1.3.3
1 parent 8acbbc3 commit 90de586

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ All notable changes to this project will be documented in this file.
1515
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to
1616
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1717

18-
## [1.3.2] - 2024-07-21
18+
## [1.3.3] - 2024-07-21
1919

2020
### Added
2121

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "color-core-monorepo",
3-
"version": "1.3.1",
3+
"version": "1.3.3",
44
"workspaces": {
55
"packages": [
66
"packages/color-core",
@@ -21,7 +21,8 @@
2121
"alldev": "concurrently \"yarn docdev\" \"yarn webdev\"",
2222
"prep": "yarn corebuild && yarn coretest && yarn docbuild && yarn clean && yarn alldev",
2323
"clean": "find . -name .DS_Store -type f -print0 | xargs -0 -I {} sh -c 'echo \"Removing {}\"; git rm -f --ignore-unmatch \"{}\"; rm \"{}\"'",
24-
"wipenode": "rimraf **/node_modules"
24+
"wipenode": "rimraf **/node_modules",
25+
"readme": "yarn workspace color-core readme"
2526
},
2627
"devDependencies": {
2728
"@typescript-eslint/eslint-plugin": "7.2.0",

packages/color-core/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "color-core",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "`color-core` is a comprehensive, type-safe color manipulation library for TypeScript and JavaScript applications. It provides a powerful toolkit for working with colors across multiple color spaces, making it an essential tool for developers working on projects that require advanced color handling.",
55
"author": "Tariel Davidashvili <[email protected]> (http://tariel.me/)",
66
"license": "MIT",
@@ -44,14 +44,16 @@
4444
"main": "dist/index.js",
4545
"types": "dist/index.d.ts",
4646
"files": [
47-
"dist"
47+
"dist",
48+
"../../README.md"
4849
],
4950
"scripts": {
5051
"build": "tsc",
5152
"lb": "npm-run-all test build clean",
5253
"test": "jest",
5354
"clean": "find . -name .DS_Store -type f -print0 | xargs -0 -I {} sh -c 'echo \"Removing {}\"; git rm -f --ignore-unmatch \"{}\"; rm \"{}\"'",
54-
"prepublishOnly": "npm-run-all test build"
55+
"prepublishOnly": "npm-run-all test build",
56+
"readme": "cp ../../README.md ./README.md"
5557
},
5658
"devDependencies": {
5759
"@jest/globals": "^29.7.0",

0 commit comments

Comments
 (0)