@pexip-engage-public/color-utils 1.1.5 → 1.1.10

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/CHANGELOG.md +30 -0
  2. package/package.json +10 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @pexip-engage-public/color-utils
2
2
 
3
+ ## 1.1.10
4
+
5
+ ### Patch Changes
6
+
7
+ - 61fb0fb: chore: fix publish flow
8
+
9
+ ## 1.1.9
10
+
11
+ ### Patch Changes
12
+
13
+ - 268e40c: chore: fix publish flow
14
+
15
+ ## 1.1.8
16
+
17
+ ### Patch Changes
18
+
19
+ - 3dc924a: chore: fix publish flow
20
+
21
+ ## 1.1.7
22
+
23
+ ### Patch Changes
24
+
25
+ - b698aac: Update all non-major dependencies
26
+
27
+ ## 1.1.6
28
+
29
+ ### Patch Changes
30
+
31
+ - eed927d: Update all non-major dependencies
32
+
3
33
  ## 1.1.5
4
34
 
5
35
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pexip-engage-public/color-utils",
3
- "version": "1.1.5",
3
+ "version": "1.1.10",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/skedify/frontend-mono/tree/develop/packages/color-utils#readme",
6
6
  "bugs": {
@@ -31,16 +31,17 @@
31
31
  "access": "public",
32
32
  "registry": "https://registry.npmjs.org"
33
33
  },
34
+ "scripts": {
35
+ "build": "tsgo",
36
+ "clean": "rm -rf .turbo node_modules dist tsconfig.tsbuildinfo",
37
+ "test": "vitest run"
38
+ },
34
39
  "dependencies": {
35
40
  "color-convert": "^3.1.3"
36
41
  },
37
42
  "devDependencies": {
38
- "vitest": "^4.1.2",
39
- "@pexip-engage/tsconfig": "0.1.3"
43
+ "@pexip-engage/tsconfig": "workspace:*",
44
+ "vitest": "^4.1.5"
40
45
  },
41
- "scripts": {
42
- "build": "tsgo",
43
- "clean": "rm -rf .turbo node_modules dist tsconfig.tsbuildinfo",
44
- "test": "vitest run"
45
- }
46
- }
46
+ "packageManager": "npm@11.12.1"
47
+ }