@cutting/svg 4.48.0 → 4.49.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.
- package/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +13 -0
- package/demo/src/global.css.ts +0 -1
- package/package.json +9 -14
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@cutting/svg:build: cache hit, replaying output
|
|
1
|
+
@cutting/svg:build: cache hit, replaying output ccc3a2017cfccd64
|
|
2
2
|
@cutting/svg:build:
|
|
3
|
-
@cutting/svg:build: > @cutting/svg@4.
|
|
3
|
+
@cutting/svg:build: > @cutting/svg@4.49.0 build /home/runner/work/cuttingedge/cuttingedge/packages/svg
|
|
4
4
|
@cutting/svg:build: > NODE_ENV=production devtools rollup
|
|
5
5
|
@cutting/svg:build:
|
|
6
6
|
@cutting/svg:build: DEBUG using tsconfig.dist.json
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @cutting/svg
|
|
2
2
|
|
|
3
|
+
## 4.49.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3c3e166a: replace flex with css grid for main layouts
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [3c3e166a]
|
|
12
|
+
- @cutting/react-abortable-fetch@0.32.0
|
|
13
|
+
- @cutting/use-get-parent-size@1.23.0
|
|
14
|
+
- @cutting/util@4.54.0
|
|
15
|
+
|
|
3
16
|
## 4.48.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/demo/src/global.css.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cutting/svg",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.49.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/dagda1/cuttingedge.git"
|
|
@@ -11,29 +11,29 @@
|
|
|
11
11
|
"types": "dist/esm/index.d.ts",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@cutting/react-abortable-fetch": "0.
|
|
15
|
-
"@cutting/use-get-parent-size": "1.
|
|
14
|
+
"@cutting/react-abortable-fetch": "0.32.0",
|
|
15
|
+
"@cutting/use-get-parent-size": "1.23.0",
|
|
16
16
|
"@cutting/util": "4.54.0",
|
|
17
17
|
"classnames": "^2.3.2",
|
|
18
18
|
"resize-observer-polyfill": "^1.5.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@babel/runtime": "7.19.0",
|
|
22
|
-
"@cutting/component-library": "5.
|
|
22
|
+
"@cutting/component-library": "5.30.0",
|
|
23
23
|
"@cutting/devtools": "4.59.0",
|
|
24
24
|
"@cutting/eslint-config": "4.41.0",
|
|
25
25
|
"@cutting/tsconfig": "4.38.0",
|
|
26
|
-
"@cutting/useful-types": "4.
|
|
26
|
+
"@cutting/useful-types": "4.38.0",
|
|
27
27
|
"@testing-library/react": "^13.4.0",
|
|
28
|
-
"@types/react": "18.0.
|
|
28
|
+
"@types/react": "18.0.21",
|
|
29
29
|
"@types/react-dom": "18.0.6",
|
|
30
|
-
"@vanilla-extract/css": "^1.9.
|
|
30
|
+
"@vanilla-extract/css": "^1.9.1",
|
|
31
31
|
"@vanilla-extract/sprinkles": "1.5.0",
|
|
32
32
|
"assert-ts": "0.3.4",
|
|
33
|
-
"eslint": "8.
|
|
33
|
+
"eslint": "8.24.0",
|
|
34
34
|
"react": "18.2.0",
|
|
35
35
|
"react-dom": "18.2.0",
|
|
36
|
-
"typescript": "4.8.
|
|
36
|
+
"typescript": "4.8.4"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"react": ">= 18.x.x",
|
|
@@ -52,11 +52,6 @@
|
|
|
52
52
|
]
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
|
-
"lint-staged": {
|
|
56
|
-
"*.js": "eslint ./src/**/*.{js} --fix",
|
|
57
|
-
"*.ts": "eslint ./src/**/*.{ts} --fix",
|
|
58
|
-
"*.tsx": "eslint ./src/**/*.{tsx} --fix"
|
|
59
|
-
},
|
|
60
55
|
"scripts": {
|
|
61
56
|
"build": "NODE_ENV=production devtools rollup",
|
|
62
57
|
"lint": "eslint ./src/**/*.{ts,tsx} --fix",
|