@cutting/svg 4.62.0 → 4.62.1
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +10 -0
- package/package.json +9 -9
- package/vite.config.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @cutting/svg
|
|
2
2
|
|
|
3
|
+
## 4.62.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 88e84cb: add changeset for patch version bump to update react and related dependencies across all packages
|
|
8
|
+
- Updated dependencies [88e84cb]
|
|
9
|
+
- @cutting/use-get-parent-size@2.9.1
|
|
10
|
+
- @cutting/assert@0.6.1
|
|
11
|
+
- @cutting/util@4.65.1
|
|
12
|
+
|
|
3
13
|
## 4.62.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cutting/svg",
|
|
3
|
-
"version": "4.62.
|
|
3
|
+
"version": "4.62.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/dagda1/cuttingedge.git"
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"types": "dist/esm/index.d.ts",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@cutting/assert": "0.6.
|
|
15
|
-
"@cutting/use-get-parent-size": "2.9.
|
|
16
|
-
"@cutting/util": "4.65.
|
|
14
|
+
"@cutting/assert": "0.6.1",
|
|
15
|
+
"@cutting/use-get-parent-size": "2.9.1",
|
|
16
|
+
"@cutting/util": "4.65.1"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@testing-library/dom": "10.4.1",
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
"@visx/scale": "3.12.0",
|
|
23
23
|
"classnames": "2.5.1",
|
|
24
24
|
"d3-scale": "4.0.2",
|
|
25
|
-
"react": "19.2.
|
|
26
|
-
"react-dom": "19.2.
|
|
27
|
-
"@cutting/component-library": "5.50.
|
|
25
|
+
"react": "19.2.6",
|
|
26
|
+
"react-dom": "19.2.6",
|
|
27
|
+
"@cutting/component-library": "5.50.1"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"@visx/scale": "3.12.0",
|
|
31
31
|
"classnames": "2.5.1",
|
|
32
32
|
"d3-scale": "4.0.2",
|
|
33
|
-
"react": "19.2.
|
|
34
|
-
"react-dom": "19.2.
|
|
33
|
+
"react": "19.2.6",
|
|
34
|
+
"react-dom": "19.2.6"
|
|
35
35
|
},
|
|
36
36
|
"volta": {
|
|
37
37
|
"extends": "../../package.json"
|
package/vite.config.ts
CHANGED