@procore/storybook-addon 4.4.2 → 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 +6 -0
- package/package.json +16 -14
package/CHANGELOG.md
CHANGED
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"
|
|
@@ -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
94
|
"@types/react-dev-utils": "^9.0.15",
|
|
94
|
-
"@vitest/coverage-v8": "^2.
|
|
95
|
-
"eslint": "^
|
|
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
|
}
|