quidproquo-dev-server 0.0.233 → 0.0.235
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.
|
@@ -3,4 +3,4 @@ export interface QPQConfigAdvancedDevServerSettings extends QPQConfigAdvancedSet
|
|
|
3
3
|
onlyDeploySafe?: boolean;
|
|
4
4
|
vpcList?: string[];
|
|
5
5
|
}
|
|
6
|
-
export declare const defineDevServerConfig: (
|
|
6
|
+
export declare const defineDevServerConfig: (advancedSettings?: QPQConfigAdvancedDevServerSettings) => QPQConfig;
|
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.defineDevServerConfig = void 0;
|
|
7
7
|
const quidproquo_webserver_1 = require("quidproquo-webserver");
|
|
8
8
|
const path_1 = __importDefault(require("path"));
|
|
9
|
-
const defineDevServerConfig = (
|
|
9
|
+
const defineDevServerConfig = (advancedSettings) => {
|
|
10
10
|
var _a;
|
|
11
11
|
const onlyDeploySafe = (_a = advancedSettings === null || advancedSettings === void 0 ? void 0 : advancedSettings.onlyDeploySafe) !== null && _a !== void 0 ? _a : true;
|
|
12
12
|
const vpcList = (advancedSettings === null || advancedSettings === void 0 ? void 0 : advancedSettings.vpcList) || [];
|
|
@@ -3,4 +3,4 @@ export interface QPQConfigAdvancedDevServerSettings extends QPQConfigAdvancedSet
|
|
|
3
3
|
onlyDeploySafe?: boolean;
|
|
4
4
|
vpcList?: string[];
|
|
5
5
|
}
|
|
6
|
-
export declare const defineDevServerConfig: (
|
|
6
|
+
export declare const defineDevServerConfig: (advancedSettings?: QPQConfigAdvancedDevServerSettings) => QPQConfig;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineServiceFunction } from 'quidproquo-webserver';
|
|
2
2
|
import path from 'path';
|
|
3
|
-
export const defineDevServerConfig = (
|
|
3
|
+
export const defineDevServerConfig = (advancedSettings) => {
|
|
4
4
|
const onlyDeploySafe = advancedSettings?.onlyDeploySafe ?? true;
|
|
5
5
|
const vpcList = advancedSettings?.vpcList || [];
|
|
6
6
|
const pathToRuntime = path.join(__dirname, '../../entry/serviceFunction/runCypherQuery');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quidproquo-dev-server",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.235",
|
|
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.
|
|
37
|
-
"quidproquo-webserver": "0.0.
|
|
38
|
-
"quidproquo-actionprocessor-awslambda": "0.0.
|
|
39
|
-
"quidproquo-actionprocessor-node": "0.0.
|
|
36
|
+
"quidproquo-core": "0.0.235",
|
|
37
|
+
"quidproquo-webserver": "0.0.235",
|
|
38
|
+
"quidproquo-actionprocessor-awslambda": "0.0.235",
|
|
39
|
+
"quidproquo-actionprocessor-node": "0.0.235"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/multer": "^1.4.12",
|
|
43
|
-
"quidproquo-tsconfig": "0.0.
|
|
43
|
+
"quidproquo-tsconfig": "0.0.235",
|
|
44
44
|
"typescript": "^4.9.3"
|
|
45
45
|
}
|
|
46
46
|
}
|