@thi.ng/color 5.6.39 → 5.6.40
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.
- package/CHANGELOG.md +7 -1
- package/README.md +8 -2
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2024-
|
|
3
|
+
- **Last updated**: 2024-04-08T14:59:29Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
|
|
|
9
9
|
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
10
10
|
and/or version bumps of transitive dependencies.
|
|
11
11
|
|
|
12
|
+
### [5.6.40](https://github.com/thi-ng/umbrella/tree/@thi.ng/color@5.6.40) (2024-04-08)
|
|
13
|
+
|
|
14
|
+
#### ♻️ Refactoring
|
|
15
|
+
|
|
16
|
+
- update reducer handling ([5b445a7](https://github.com/thi-ng/umbrella/commit/5b445a7))
|
|
17
|
+
|
|
12
18
|
### [5.6.24](https://github.com/thi-ng/umbrella/tree/@thi.ng/color@5.6.24) (2024-02-23)
|
|
13
19
|
|
|
14
20
|
#### 🩹 Bug fixes
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 191 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
|
@@ -656,7 +656,13 @@ efficient application.
|
|
|
656
656
|
yarn add @thi.ng/color
|
|
657
657
|
```
|
|
658
658
|
|
|
659
|
-
|
|
659
|
+
ESM import:
|
|
660
|
+
|
|
661
|
+
```ts
|
|
662
|
+
import * as color from "@thi.ng/color";
|
|
663
|
+
```
|
|
664
|
+
|
|
665
|
+
Browser ESM import:
|
|
660
666
|
|
|
661
667
|
```html
|
|
662
668
|
<script type="module" src="https://cdn.skypack.dev/@thi.ng/color"></script>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/color",
|
|
3
|
-
"version": "5.6.
|
|
3
|
+
"version": "5.6.40",
|
|
4
4
|
"description": "Array-based color types, CSS parsing, conversions, transformations, declarative theme generation, gradients, presets",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -40,19 +40,19 @@
|
|
|
40
40
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@thi.ng/api": "^8.
|
|
44
|
-
"@thi.ng/arrays": "^2.9.
|
|
45
|
-
"@thi.ng/binary": "^3.4.
|
|
46
|
-
"@thi.ng/checks": "^3.
|
|
47
|
-
"@thi.ng/compare": "^2.3.
|
|
48
|
-
"@thi.ng/compose": "^
|
|
49
|
-
"@thi.ng/defmulti": "^3.0.
|
|
50
|
-
"@thi.ng/errors": "^2.5.
|
|
51
|
-
"@thi.ng/math": "^5.10.
|
|
52
|
-
"@thi.ng/random": "^3.7.
|
|
53
|
-
"@thi.ng/strings": "^3.7.
|
|
54
|
-
"@thi.ng/transducers": "^
|
|
55
|
-
"@thi.ng/vectors": "^7.10.
|
|
43
|
+
"@thi.ng/api": "^8.10.0",
|
|
44
|
+
"@thi.ng/arrays": "^2.9.2",
|
|
45
|
+
"@thi.ng/binary": "^3.4.21",
|
|
46
|
+
"@thi.ng/checks": "^3.6.0",
|
|
47
|
+
"@thi.ng/compare": "^2.3.1",
|
|
48
|
+
"@thi.ng/compose": "^3.0.0",
|
|
49
|
+
"@thi.ng/defmulti": "^3.0.35",
|
|
50
|
+
"@thi.ng/errors": "^2.5.3",
|
|
51
|
+
"@thi.ng/math": "^5.10.9",
|
|
52
|
+
"@thi.ng/random": "^3.7.2",
|
|
53
|
+
"@thi.ng/strings": "^3.7.29",
|
|
54
|
+
"@thi.ng/transducers": "^9.0.0",
|
|
55
|
+
"@thi.ng/vectors": "^7.10.26"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@microsoft/api-extractor": "^7.43.0",
|
|
@@ -446,5 +446,5 @@
|
|
|
446
446
|
"vectors"
|
|
447
447
|
]
|
|
448
448
|
},
|
|
449
|
-
"gitHead": "
|
|
449
|
+
"gitHead": "85ac4bd4d6d89f8e3689e2863d5bea0cecdb371c\n"
|
|
450
450
|
}
|