@procore/storybook-addon 4.4.2 → 4.5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +17 -15
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @procore/storybook-addon
2
2
 
3
+ ## 4.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 3f9445a: hammer and hammer plugins update versions of the listed packages
8
+
9
+ ## 4.5.0
10
+
11
+ ### Minor Changes
12
+
13
+ - f65f65f: Migrate internal packages to use Hammer tooling.
14
+
3
15
  ## 4.4.2
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.4.2",
3
+ "version": "4.5.1",
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
- "sideEffects": false,
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": "eslint .",
55
+ "lint": "hammer lint:code",
57
56
  "prepack": "hammer lib:build",
58
- "test": "vitest run --coverage"
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.2.1",
88
- "@procore/hammer": "^0.10.0",
89
- "@procore/hammer-lib-tsup": "^0.5.1",
86
+ "@procore/eslint-config": "^15.3.1",
87
+ "@procore/hammer": "^0.16.0",
88
+ "@procore/hammer-lib-tsup": "^0.9.0",
89
+ "@procore/hammer-lint-eslint": "^0.5.0",
90
+ "@procore/hammer-test-vitest": "^0.13.0",
90
91
  "@procore/prettier-config": "^1.1.1",
91
- "@procore/typescript-config": "^2.0.0",
92
+ "@procore/typescript-config": "^2.1.0",
92
93
  "@types/react": "^18.2.37",
93
94
  "@types/react-dev-utils": "^9.0.15",
94
- "@vitest/coverage-v8": "^2.1.9",
95
- "eslint": "^8.57.0",
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.1.9"
104
- }
104
+ "vitest": "^3.2.4"
105
+ },
106
+ "sideEffects": false
105
107
  }