@procore/storybook-addon 4.4.1 → 4.5.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/CHANGELOG.md +12 -0
- package/package.json +21 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @procore/storybook-addon
|
|
2
2
|
|
|
3
|
+
## 4.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f65f65f: Migrate internal packages to use Hammer tooling.
|
|
8
|
+
|
|
9
|
+
## 4.4.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 1e76616: Upgrades storybook dependencies to 7.6.20.
|
|
14
|
+
|
|
3
15
|
## 4.4.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@procore/storybook-addon",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.0",
|
|
4
4
|
"description": "Procore Storybook Configuration",
|
|
5
5
|
"author": "Procore Technologies",
|
|
6
6
|
"homepage": "https://github.com/procore/frontend-tooling#readme",
|
|
@@ -19,9 +19,6 @@
|
|
|
19
19
|
"access": "public"
|
|
20
20
|
},
|
|
21
21
|
"type": "module",
|
|
22
|
-
"types": "dist/legacy/index.d.ts",
|
|
23
|
-
"main": "dist/legacy/index.cjs",
|
|
24
|
-
"module": "dist/legacy/index.js",
|
|
25
22
|
"exports": {
|
|
26
23
|
".": {
|
|
27
24
|
"import": {
|
|
@@ -45,7 +42,9 @@
|
|
|
45
42
|
},
|
|
46
43
|
"./package.json": "./package.json"
|
|
47
44
|
},
|
|
48
|
-
"
|
|
45
|
+
"main": "dist/legacy/index.cjs",
|
|
46
|
+
"module": "dist/legacy/index.js",
|
|
47
|
+
"types": "dist/legacy/index.d.ts",
|
|
49
48
|
"files": [
|
|
50
49
|
"dist"
|
|
51
50
|
],
|
|
@@ -53,9 +52,9 @@
|
|
|
53
52
|
"build": "hammer lib:build",
|
|
54
53
|
"format": "prettier --ignore-unknown --write .",
|
|
55
54
|
"format:check": "prettier --cache --ignore-unknown --check .",
|
|
56
|
-
"lint": "
|
|
55
|
+
"lint": "hammer lint:code",
|
|
57
56
|
"prepack": "hammer lib:build",
|
|
58
|
-
"test": "
|
|
57
|
+
"test": "hammer test --coverage"
|
|
59
58
|
},
|
|
60
59
|
"peerDependencies": {
|
|
61
60
|
"sass": "^1.3.0"
|
|
@@ -71,11 +70,11 @@
|
|
|
71
70
|
"@babel/preset-react": "^7.23.3",
|
|
72
71
|
"@babel/preset-typescript": "^7.23.3",
|
|
73
72
|
"@babel/runtime": "^7.26.10",
|
|
74
|
-
"@storybook/addon-a11y": "^7.
|
|
75
|
-
"@storybook/addon-essentials": "^7.
|
|
76
|
-
"@storybook/addon-storysource": "^7.
|
|
73
|
+
"@storybook/addon-a11y": "^7.6.20",
|
|
74
|
+
"@storybook/addon-essentials": "^7.6.20",
|
|
75
|
+
"@storybook/addon-storysource": "^7.6.20",
|
|
77
76
|
"@storybook/addon-styling": "^1.3.7",
|
|
78
|
-
"@storybook/theming": "^7.
|
|
77
|
+
"@storybook/theming": "^7.6.20",
|
|
79
78
|
"@svgr/webpack": "^6.5.1",
|
|
80
79
|
"babel-plugin-named-asset-import": "^0.3.8",
|
|
81
80
|
"babel-plugin-styled-components": "^2.1.4",
|
|
@@ -84,15 +83,17 @@
|
|
|
84
83
|
},
|
|
85
84
|
"devDependencies": {
|
|
86
85
|
"@babel/core": "^7.23.3",
|
|
87
|
-
"@procore/eslint-config": "^15.
|
|
88
|
-
"@procore/hammer": "^0.
|
|
89
|
-
"@procore/hammer-lib-tsup": "^0.
|
|
86
|
+
"@procore/eslint-config": "^15.3.0",
|
|
87
|
+
"@procore/hammer": "^0.15.0",
|
|
88
|
+
"@procore/hammer-lib-tsup": "^0.8.0",
|
|
89
|
+
"@procore/hammer-lint-eslint": "^0.4.0",
|
|
90
|
+
"@procore/hammer-test-vitest": "^0.12.0",
|
|
90
91
|
"@procore/prettier-config": "^1.1.1",
|
|
91
92
|
"@procore/typescript-config": "^2.0.0",
|
|
92
93
|
"@types/react": "^18.2.37",
|
|
93
|
-
"@types/react-dev-utils": "^9.0.
|
|
94
|
-
"@vitest/coverage-v8": "^2.
|
|
95
|
-
"eslint": "^
|
|
94
|
+
"@types/react-dev-utils": "^9.0.15",
|
|
95
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
96
|
+
"eslint": "^9.31.0",
|
|
96
97
|
"pathe": "^1.1.2",
|
|
97
98
|
"prettier": "^2.8.8",
|
|
98
99
|
"react": "^18.2.0",
|
|
@@ -100,6 +101,7 @@
|
|
|
100
101
|
"react-dom": "^18.2.0",
|
|
101
102
|
"rimraf": "^3.0.2",
|
|
102
103
|
"typescript": "^5.5.2",
|
|
103
|
-
"vitest": "^2.
|
|
104
|
-
}
|
|
104
|
+
"vitest": "^3.2.4"
|
|
105
|
+
},
|
|
106
|
+
"sideEffects": false
|
|
105
107
|
}
|