quidproquo-dev-server 0.0.238 → 0.0.239

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.
@@ -48,6 +48,7 @@ const apiImplementation = (devServerConfig) => __awaiter(void 0, void 0, void 0,
48
48
  app.use((0, multer_1.default)().any());
49
49
  app.use(body_parser_1.default.json({ limit: '50mb' }));
50
50
  const apiConfigs = allServiceConfig.map((qpqConfig) => getApiDomainsFromConfig(qpqConfig, devServerConfig)).flat();
51
+ console.log(apiConfigs.map((ac) => ac.devPath));
51
52
  const adminFrontend = path_1.default.join(__dirname, '../../..', 'node_modules', 'quidproquo-web-admin', 'lib');
52
53
  // Admin page
53
54
  app.use('/admin', express_1.default.static(adminFrontend));
@@ -33,6 +33,7 @@ export const apiImplementation = async (devServerConfig) => {
33
33
  app.use(multer().any());
34
34
  app.use(bodyParser.json({ limit: '50mb' }));
35
35
  const apiConfigs = allServiceConfig.map((qpqConfig) => getApiDomainsFromConfig(qpqConfig, devServerConfig)).flat();
36
+ console.log(apiConfigs.map((ac) => ac.devPath));
36
37
  const adminFrontend = path.join(__dirname, '../../..', 'node_modules', 'quidproquo-web-admin', 'lib');
37
38
  // Admin page
38
39
  app.use('/admin', express.static(adminFrontend));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quidproquo-dev-server",
3
- "version": "0.0.238",
3
+ "version": "0.0.239",
4
4
  "description": "",
5
5
  "main": "./lib/commonjs/index.js",
6
6
  "module": "./lib/esm/index.js",
@@ -33,14 +33,14 @@
33
33
  "homepage": "https://github.com/joe-coady/quidproquo#readme",
34
34
  "dependencies": {
35
35
  "multer": "^1.4.5-lts.1",
36
- "quidproquo-core": "0.0.238",
37
- "quidproquo-webserver": "0.0.238",
38
- "quidproquo-actionprocessor-awslambda": "0.0.238",
39
- "quidproquo-actionprocessor-node": "0.0.238"
36
+ "quidproquo-core": "0.0.239",
37
+ "quidproquo-webserver": "0.0.239",
38
+ "quidproquo-actionprocessor-awslambda": "0.0.239",
39
+ "quidproquo-actionprocessor-node": "0.0.239"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/multer": "^1.4.12",
43
- "quidproquo-tsconfig": "0.0.238",
43
+ "quidproquo-tsconfig": "0.0.239",
44
44
  "typescript": "^4.9.3"
45
45
  }
46
46
  }