Browse Source

fix webpack build

dsehnal 3 years ago
parent
commit
469ca6cb41
3 changed files with 311 additions and 250 deletions
  1. 303 248
      package-lock.json
  2. 4 1
      package.json
  3. 4 1
      webpack.config.common.js

File diff suppressed because it is too large
+ 303 - 248
package-lock.json


+ 4 - 1
package.json

@@ -101,6 +101,7 @@
     "benchmark": "^2.1.4",
     "concurrently": "^5.3.0",
     "cpx2": "^3.0.0",
+    "crypto-browserify": "^3.12.0",
     "css-loader": "^5.0.1",
     "eslint": "^7.15.0",
     "extra-watch-webpack-plugin": "^1.0.3",
@@ -111,12 +112,14 @@
     "jest": "^26.6.3",
     "mini-css-extract-plugin": "^1.3.2",
     "node-sass": "^6.0.0",
+    "path-browserify": "^1.0.1",
     "raw-loader": "^4.0.2",
     "sass-loader": "^11.1.1",
     "simple-git": "^2.25.0",
+    "stream-browserify": "^3.0.0",
     "style-loader": "^2.0.0",
     "ts-jest": "^26.4.4",
-    "typescript": "^4.2.3",
+    "typescript": "^4.2.4",
     "webpack": "^5.37.1",
     "webpack-cli": "^4.7.0",
     "webpack-version-file-plugin": "^0.4.0"

+ 4 - 1
webpack.config.common.js

@@ -49,7 +49,10 @@ const sharedConfig = {
             path.resolve(__dirname, 'lib/')
         ],
         fallback: {
-            fs: false
+            fs: false,
+            crypto: require.resolve('crypto-browserify'),
+            path: require.resolve('path-browserify'),
+            stream: require.resolve('stream-browserify'),
         }
     },
     watchOptions: {

Some files were not shown because too many files changed in this diff