cozy-ui 128.3.1 → 128.3.3

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 +14 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [128.3.3](https://github.com/cozy/cozy-ui/compare/v128.3.2...v128.3.3) (2025-09-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **packages:** Don't apply patch-package if no package to patch ([8c9cc6c](https://github.com/cozy/cozy-ui/commit/8c9cc6c))
7
+
8
+ ## [128.3.2](https://github.com/cozy/cozy-ui/compare/v128.3.1...v128.3.2) (2025-09-03)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Add `@fastify/deepmerge` as dep to apply patch correctly on apps ([20fdbc5](https://github.com/cozy/cozy-ui/commit/20fdbc5))
14
+
1
15
  ## [128.3.1](https://github.com/cozy/cozy-ui/compare/v128.3.0...v128.3.1) (2025-09-03)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-ui",
3
- "version": "128.3.1",
3
+ "version": "128.3.3",
4
4
  "description": "Cozy apps UI SDK",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -50,7 +50,7 @@
50
50
  "test": "jest",
51
51
  "screenshots:server": "nodemon ./scripts/pixelmatch-server/server.js -e js,hbs",
52
52
  "postbuild": "postcss transpiled/react/stylesheet.css --replace",
53
- "postinstall": "patch-package",
53
+ "postinstall": "if [ -d 'node_modules/@fastify/deepmerge' ]; then patch-package; fi",
54
54
  "travis-deploy-once": "travis-deploy-once",
55
55
  "start:css:utils": "yarn build:css:utils --watch",
56
56
  "start:css": "yarn build:css --watch",