@cutting/svg 4.62.0 → 4.63.0

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.
@@ -1,7 +1,4 @@
1
-
2
- > @cutting/svg@4.62.0 build /home/runner/work/cuttingedge/cuttingedge/packages/svg
3
- > NODE_ENV=production devtools rollup
4
-
1
+ $ NODE_ENV=production devtools rollup
5
2
  DEBUG using tsconfig.dist.json
6
3
  START using input file index.ts for @cutting/svg
7
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @cutting/svg
2
2
 
3
+ ## 4.63.0
4
+
5
+ ### Minor Changes
6
+
7
+ - c702763: upgrade @visx to 4
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [c702763]
12
+ - @cutting/use-get-parent-size@2.10.0
13
+
14
+ ## 4.62.1
15
+
16
+ ### Patch Changes
17
+
18
+ - 88e84cb: add changeset for patch version bump to update react and related dependencies across all packages
19
+ - Updated dependencies [88e84cb]
20
+ - @cutting/use-get-parent-size@2.9.1
21
+ - @cutting/assert@0.6.1
22
+ - @cutting/util@4.65.1
23
+
3
24
  ## 4.62.0
4
25
 
5
26
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cutting/svg",
3
- "version": "4.62.0",
3
+ "version": "4.63.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dagda1/cuttingedge.git"
@@ -11,27 +11,27 @@
11
11
  "types": "dist/esm/index.d.ts",
12
12
  "license": "MIT",
13
13
  "dependencies": {
14
- "@cutting/assert": "0.6.0",
15
- "@cutting/use-get-parent-size": "2.9.0",
16
- "@cutting/util": "4.65.0"
14
+ "@cutting/assert": "0.6.1",
15
+ "@cutting/use-get-parent-size": "2.10.0",
16
+ "@cutting/util": "4.65.1"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@testing-library/dom": "10.4.1",
20
20
  "@testing-library/react": "16.3.2",
21
21
  "@testing-library/user-event": "14.6.1",
22
- "@visx/scale": "3.12.0",
22
+ "@visx/scale": "4.0.0",
23
23
  "classnames": "2.5.1",
24
24
  "d3-scale": "4.0.2",
25
- "react": "19.2.5",
26
- "react-dom": "19.2.5",
27
- "@cutting/component-library": "5.50.0"
25
+ "react": "19.2.7",
26
+ "react-dom": "19.2.7",
27
+ "@cutting/component-library": "5.51.0"
28
28
  },
29
29
  "peerDependencies": {
30
- "@visx/scale": "3.12.0",
30
+ "@visx/scale": "4.0.0",
31
31
  "classnames": "2.5.1",
32
32
  "d3-scale": "4.0.2",
33
- "react": "19.2.5",
34
- "react-dom": "19.2.5"
33
+ "react": "19.2.7",
34
+ "react-dom": "19.2.7"
35
35
  },
36
36
  "volta": {
37
37
  "extends": "../../package.json"
package/vite.config.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { vanillaExtractPlugin } from '@vanilla-extract/vite-plugin';
2
- import react from '@vitejs/plugin-react-swc';
2
+ import react from '@vitejs/plugin-react';
3
3
  import { defineConfig } from 'vitest/config';
4
4
 
5
5
  const isTest = process.env.NODE_ENV === 'test';