@onlineapps/conn-orch-cookbook 2.0.0 → 2.0.1
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/package.json +7 -2
- package/src/index.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onlineapps/conn-orch-cookbook",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Complete cookbook toolkit for all services - unified wrapper including core, executor, transformer, and router functionality",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -45,7 +45,12 @@
|
|
|
45
45
|
"url": "https://github.com/onlineapps/connector-cookbook/issues"
|
|
46
46
|
},
|
|
47
47
|
"homepage": "https://github.com/onlineapps/connector-cookbook#readme",
|
|
48
|
-
"dependencies": {
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@onlineapps/cookbook-core": "^1.0.0",
|
|
50
|
+
"@onlineapps/cookbook-executor": "^1.0.0",
|
|
51
|
+
"@onlineapps/cookbook-router": "^1.0.0",
|
|
52
|
+
"@onlineapps/cookbook-transformer": "^1.0.0"
|
|
53
|
+
},
|
|
49
54
|
"devDependencies": {
|
|
50
55
|
"eslint": "^8.30.0",
|
|
51
56
|
"eslint-config-prettier": "^8.5.0",
|
package/src/index.js
CHANGED
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
// Import from shared cookbook modules - NO LOCAL IMPLEMENTATIONS!
|
|
19
|
-
const cookbookCore = require('
|
|
20
|
-
const cookbookExecutor = require('
|
|
21
|
-
const cookbookTransformer = require('
|
|
22
|
-
const cookbookRouter = require('
|
|
19
|
+
const cookbookCore = require('@onlineapps/cookbook-core');
|
|
20
|
+
const cookbookExecutor = require('@onlineapps/cookbook-executor');
|
|
21
|
+
const cookbookTransformer = require('@onlineapps/cookbook-transformer');
|
|
22
|
+
const cookbookRouter = require('@onlineapps/cookbook-router');
|
|
23
23
|
|
|
24
24
|
// Re-export all from cookbook-core (parser and validator)
|
|
25
25
|
const {
|