Jelajahi Sumber

Merge pull request #1036 from russellp17/master

Move most headless context deps to optional peer dependencies and remove `@types/jpeg-js`
Alexander Rose 1 tahun lalu
induk
melakukan
46fa581f07
3 mengubah file dengan 178 tambahan dan 52 penghapusan
  1. 1 0
      CHANGELOG.md
  2. 159 46
      package-lock.json
  3. 18 6
      package.json

+ 1 - 0
CHANGELOG.md

@@ -16,6 +16,7 @@ Note that since we don't clearly distinguish between a public and private interf
   - Support `multiline` inputs
   - Support `placeholder` parameter
   - Support `disableInteractiveUpdates` to only trigger updates once the control loses focus
+- Move dependencies related to the headless context from optional deps to optional peer deps
 
 ## [v3.44.0] - 2023-01-06
 

File diff ditekan karena terlalu besar
+ 159 - 46
package-lock.json


+ 18 - 6
package.json

@@ -117,7 +117,6 @@
     "@graphql-codegen/typescript-operations": "^4.0.1",
     "@types/cors": "^2.8.17",
     "@types/gl": "^6.0.5",
-    "@types/jpeg-js": "^0.3.7",
     "@types/pngjs": "^6.0.4",
     "@types/jest": "^29.5.11",
     "@types/react": "^18.2.47",
@@ -136,6 +135,7 @@
     "graphql": "^16.8.1",
     "http-server": "^14.1.1",
     "jest": "^29.7.0",
+    "jpeg-js": "^0.4.4",
     "mini-css-extract-plugin": "^2.7.6",
     "path-browserify": "^1.0.1",
     "raw-loader": "^4.0.2",
@@ -177,13 +177,25 @@
     "xhr2": "^0.2.1"
   },
   "peerDependencies": {
-    "react": "^18.1.0 || ^17.0.2 || ^16.14.0",
-    "react-dom": "^18.1.0 || ^17.0.2 || ^16.14.0"
-  },
-  "optionalDependencies": {
     "canvas": "^2.11.2",
     "gl": "^6.0.2",
     "jpeg-js": "^0.4.4",
-    "pngjs": "^6.0.0"
+    "pngjs": "^6.0.0",
+    "react": "^18.1.0 || ^17.0.2 || ^16.14.0",
+    "react-dom": "^18.1.0 || ^17.0.2 || ^16.14.0"
+  },
+  "peerDependenciesMeta": {
+    "canvas": {
+      "optional": true
+    },
+    "gl": {
+      "optional": true
+    },
+    "jpeg-js": {
+      "optional": true
+    },
+    "pngjs": {
+      "optional": true
+    }
   }
 }

Beberapa file tidak ditampilkan karena terlalu banyak file yang berubah dalam diff ini