meadow-integration 1.0.38 → 1.0.40
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/.github/workflows/publish-image.yml +85 -0
- package/BUILDING-AND-PUBLISHING.md +357 -0
- package/Dockerfile +1 -0
- package/example-applications/mapping-demo/web/index.html +6 -6
- package/example-applications/mapping-demo/web/mapping-demo-editor.js +6 -6
- package/example-applications/mapping-demo/web/mapping-demo-editor.min.js +1 -1
- package/package.json +19 -9
- package/schema/default.json +915 -0
- package/source/cli/Default-Meadow-Integration-Configuration.json +1 -1
- package/source/cli/commands/Meadow-Integration-Command-DataClone.js +102 -6
- package/source/views/PictView-MeadowMappingEditor.js +5 -5
- package/source/views/flow-cards/FlowCard-SolverExpression.js +2 -2
- package/source/views/flow-cards/FlowCard-TemplateExpression.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meadow-integration",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.40",
|
|
4
4
|
"description": "Meadow Data Integration",
|
|
5
5
|
"retoldBeacon": {
|
|
6
6
|
"displayName": "Meadow Integration",
|
|
@@ -43,14 +43,24 @@
|
|
|
43
43
|
"start": "node source/cli/Meadow-Integration-CLI-Run.js",
|
|
44
44
|
"tests": "npx quack test -g",
|
|
45
45
|
"coverage": "npx quack coverage",
|
|
46
|
-
"build": "npx quack build"
|
|
46
|
+
"build": "npx quack build",
|
|
47
|
+
"prepublishOnly": "npm test",
|
|
48
|
+
"postversion": "npx quack release postversion",
|
|
49
|
+
"postpublish": "npx quack release postpublish",
|
|
50
|
+
"publish:docker": "npx quack release publish --image",
|
|
51
|
+
"release:patch": "npx quack release patch",
|
|
52
|
+
"release:minor": "npx quack release minor",
|
|
53
|
+
"release:major": "npx quack release major",
|
|
54
|
+
"release:patch:image": "npx quack release patch --image",
|
|
55
|
+
"release:minor:image": "npx quack release minor --image",
|
|
56
|
+
"release:major:image": "npx quack release major --image"
|
|
47
57
|
},
|
|
48
58
|
"author": "steven velozo <steven@velozo.com>",
|
|
49
59
|
"license": "MIT",
|
|
50
60
|
"devDependencies": {
|
|
51
61
|
"meadow-connection-sqlite": "^1.0.19",
|
|
52
62
|
"pict-docuserve": "^0.1.5",
|
|
53
|
-
"quackage": "^1.
|
|
63
|
+
"quackage": "^1.2.3"
|
|
54
64
|
},
|
|
55
65
|
"mocha": {
|
|
56
66
|
"diff": true,
|
|
@@ -71,14 +81,14 @@
|
|
|
71
81
|
]
|
|
72
82
|
},
|
|
73
83
|
"dependencies": {
|
|
74
|
-
"fable": "^3.1.
|
|
84
|
+
"fable": "^3.1.72",
|
|
75
85
|
"fable-serviceproviderbase": "^3.0.19",
|
|
76
86
|
"fast-xml-parser": "^4.4.1",
|
|
77
|
-
"meadow": "^2.0.
|
|
78
|
-
"meadow-connection-mssql": "^1.0.
|
|
79
|
-
"meadow-connection-mysql": "^1.0.
|
|
80
|
-
"orator": "^6.1.
|
|
81
|
-
"orator-serviceserver-restify": "^2.0.
|
|
87
|
+
"meadow": "^2.0.38",
|
|
88
|
+
"meadow-connection-mssql": "^1.0.23",
|
|
89
|
+
"meadow-connection-mysql": "^1.0.19",
|
|
90
|
+
"orator": "^6.1.2",
|
|
91
|
+
"orator-serviceserver-restify": "^2.0.11",
|
|
82
92
|
"pict-section-flow": "^0.0.17",
|
|
83
93
|
"pict-service-commandlineutility": "^1.0.19",
|
|
84
94
|
"pict-sessionmanager": "^1.0.2",
|