quidproquo-deploy-webpack 0.0.188 → 0.0.190

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.
@@ -17,6 +17,7 @@ export declare const getWebpackConfig: (qpqConfig: QPQConfig, buildPath: string,
17
17
  resolve: {
18
18
  extensions: string[];
19
19
  fallback: {
20
+ path: string;
20
21
  crypto: boolean;
21
22
  };
22
23
  };
@@ -56,6 +57,7 @@ export declare const getSeoWebpackConfig: (qpqConfig: QPQConfig, outputPath?: st
56
57
  resolve: {
57
58
  extensions: string[];
58
59
  fallback: {
60
+ path: string;
59
61
  crypto: boolean;
60
62
  };
61
63
  };
@@ -94,6 +96,7 @@ export declare const getApiWebpackConfig: (qpqConfig: QPQConfig, outputPath?: st
94
96
  resolve: {
95
97
  extensions: string[];
96
98
  fallback: {
99
+ path: string;
97
100
  crypto: boolean;
98
101
  };
99
102
  };
@@ -132,6 +135,7 @@ export declare const getAllWebpackConfig: (qpqConfig: QPQConfig, outputPath?: st
132
135
  resolve: {
133
136
  extensions: string[];
134
137
  fallback: {
138
+ path: string;
135
139
  crypto: boolean;
136
140
  };
137
141
  };
@@ -50,6 +50,7 @@ const getWebpackConfig = (qpqConfig, buildPath, awsLambdasToBuild) => {
50
50
  resolve: {
51
51
  extensions: ['.ts', '.tsx', '.js', '.json'],
52
52
  fallback: {
53
+ path: require.resolve('path-browserify'),
53
54
  crypto: false,
54
55
  },
55
56
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quidproquo-deploy-webpack",
3
- "version": "0.0.188",
3
+ "version": "0.0.190",
4
4
  "description": "",
5
5
  "main": "./lib/commonjs/webpack.config.js",
6
6
  "types": "./lib/commonjs/webpack.config.d.ts",
@@ -25,11 +25,12 @@
25
25
  },
26
26
  "homepage": "https://github.com/joe-coady/quidproquo#readme",
27
27
  "dependencies": {
28
- "quidproquo-actionprocessor-awslambda": "0.0.188",
29
- "quidproquo-actionprocessor-node": "0.0.188",
30
- "quidproquo-core": "0.0.188",
31
- "quidproquo-deploy-awscdk": "0.0.188",
32
- "quidproquo-webserver": "0.0.188"
28
+ "path-browserify": "^1.0.1",
29
+ "quidproquo-actionprocessor-awslambda": "0.0.190",
30
+ "quidproquo-actionprocessor-node": "0.0.190",
31
+ "quidproquo-core": "0.0.190",
32
+ "quidproquo-deploy-awscdk": "0.0.190",
33
+ "quidproquo-webserver": "0.0.190"
33
34
  },
34
35
  "devDependencies": {
35
36
  "@babel/core": "^7.20.12",
@@ -39,7 +40,7 @@
39
40
  "@types/node": "^20.2.1",
40
41
  "@types/prettier": "2.6.0",
41
42
  "babel-loader": "^9.1.2",
42
- "quidproquo-tsconfig": "0.0.188",
43
+ "quidproquo-tsconfig": "0.0.190",
43
44
  "ts-node": "^10.9.1",
44
45
  "typescript": "^5.0.4"
45
46
  }