@friggframework/core 2.0.0--canary.377.b07626c.0 → 2.0.0--canary.380.c98f800.0
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.
- package/core/create-handler.js +2 -1
- package/package.json +13 -10
package/core/create-handler.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// This line should be at the top of the webpacked output, so be sure to require createHandler first in any handlers. "Soon" sourcemaps will be built into Node... after that, this package won't be needed.
|
|
2
|
-
|
|
2
|
+
// REMOVING FOR NOW UNTIL WE ADD WEBPACK BACK IN
|
|
3
|
+
// require('source-map-support').install();
|
|
3
4
|
|
|
4
5
|
const { connectToDatabase } = require('../database/mongo');
|
|
5
6
|
const { initDebugLog, flushDebugLog } = require('../logs');
|
package/package.json
CHANGED
|
@@ -1,24 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@friggframework/core",
|
|
3
3
|
"prettier": "@friggframework/prettier-config",
|
|
4
|
-
"version": "2.0.0--canary.
|
|
4
|
+
"version": "2.0.0--canary.380.c98f800.0",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@hapi/boom": "^10.0.1",
|
|
7
7
|
"aws-sdk": "^2.1200.0",
|
|
8
8
|
"bcryptjs": "^2.4.3",
|
|
9
|
+
"body-parser": "^1.20.2",
|
|
9
10
|
"common-tags": "^1.8.2",
|
|
10
|
-
"
|
|
11
|
+
"cors": "^2.8.5",
|
|
12
|
+
"express": "^4.19.2",
|
|
11
13
|
"express-async-handler": "^1.2.0",
|
|
12
|
-
"lodash": "
|
|
13
|
-
"lodash.get": "
|
|
14
|
+
"lodash": "4.17.21",
|
|
15
|
+
"lodash.get": "4.4.2",
|
|
14
16
|
"mongoose": "6.11.6",
|
|
15
|
-
"node-fetch": "^2.6.7"
|
|
17
|
+
"node-fetch": "^2.6.7",
|
|
18
|
+
"serverless-http": "^2.7.0"
|
|
16
19
|
},
|
|
17
20
|
"devDependencies": {
|
|
18
|
-
"@friggframework/eslint-config": "2.0.0--canary.
|
|
19
|
-
"@friggframework/prettier-config": "2.0.0--canary.
|
|
20
|
-
"@friggframework/test": "2.0.0--canary.
|
|
21
|
-
"@types/lodash": "
|
|
21
|
+
"@friggframework/eslint-config": "2.0.0--canary.380.c98f800.0",
|
|
22
|
+
"@friggframework/prettier-config": "2.0.0--canary.380.c98f800.0",
|
|
23
|
+
"@friggframework/test": "2.0.0--canary.380.c98f800.0",
|
|
24
|
+
"@types/lodash": "4.17.15",
|
|
22
25
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
23
26
|
"chai": "^4.3.6",
|
|
24
27
|
"eslint": "^8.22.0",
|
|
@@ -48,5 +51,5 @@
|
|
|
48
51
|
},
|
|
49
52
|
"homepage": "https://github.com/friggframework/frigg#readme",
|
|
50
53
|
"description": "",
|
|
51
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "c98f800f923c49012b32df0ce50028832c3fb4af"
|
|
52
55
|
}
|