@kumologica/sdk 3.6.3-beta2 → 3.6.3-beta3
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/cli/commands/open.js +0 -10
- package/cli/commands/test.js +1 -1
- package/package.json +5 -5
package/cli/commands/open.js
CHANGED
|
@@ -35,16 +35,6 @@ function displayTable(data) {
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
function startElectron(projectDir) {
|
|
38
|
-
|
|
39
|
-
console.log(`
|
|
40
|
-
Welcome to Kumologica SDK.
|
|
41
|
-
|
|
42
|
-
NOTICE: Using this module constitutes acceptance of the License and Privacy Policy terms.
|
|
43
|
-
- License: https://kumologica.com/legal/license_en.txt
|
|
44
|
-
- Privacy Policy: https://kumologica.com/legal/policy.html
|
|
45
|
-
`);
|
|
46
|
-
|
|
47
|
-
|
|
48
38
|
console.debug(`Project directory: ${projectDir}`);
|
|
49
39
|
console.debug(`Root directory: ${rootPath}`);
|
|
50
40
|
|
package/cli/commands/test.js
CHANGED
|
@@ -117,7 +117,7 @@ async function runTestOnNewServer(flowFilePath, testcaseSelected, iterative) {
|
|
|
117
117
|
logFatal(`No matched testcases found`);
|
|
118
118
|
} else {
|
|
119
119
|
const errors = await testSuiteRunner.runAll(testCasesSelected);
|
|
120
|
-
process.exit(errors
|
|
120
|
+
process.exit(errors ? 1 : 0);
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
} catch (err) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kumologica/sdk",
|
|
3
|
-
"version": "3.6.3-
|
|
3
|
+
"version": "3.6.3-beta3",
|
|
4
4
|
"productName": "Kumologica Designer",
|
|
5
5
|
"copyright": "Copyright 2020 Kumologica Pty Ltd, All Rights Reserved.",
|
|
6
6
|
"author": "Kumologica Pty Ltd <contact@kumologica.com>",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"license-check": "npx license-checker --summary && npx license-compatibility-checker ",
|
|
62
62
|
"license-report": "npx license-report --omit=dev --output=table"
|
|
63
63
|
},
|
|
64
|
-
"license": "Proprietary",
|
|
64
|
+
"license": "Proprietary see LICENSE file",
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@apidevtools/swagger-parser": "^10.1.1",
|
|
67
67
|
"@aws-sdk/client-api-gateway": "^3.556.0",
|
|
@@ -83,9 +83,9 @@
|
|
|
83
83
|
"@aws-sdk/credential-providers": "^3.556.0",
|
|
84
84
|
"@aws-sdk/lib-dynamodb": "^3.549.0",
|
|
85
85
|
"@electron/remote": "^2.0.8",
|
|
86
|
-
"@kumologica/builder": "3.6.3-
|
|
87
|
-
"@kumologica/devkit": "3.6.3-
|
|
88
|
-
"@kumologica/runtime": "3.6.3-
|
|
86
|
+
"@kumologica/builder": "3.6.3-beta3",
|
|
87
|
+
"@kumologica/devkit": "3.6.3-beta3",
|
|
88
|
+
"@kumologica/runtime": "3.6.3-beta3",
|
|
89
89
|
"adm-zip": "0.4.13",
|
|
90
90
|
"ajv": "8.10.0",
|
|
91
91
|
"archive-type": "^4.0.0",
|