-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 17fad27 Merge: 6d4dfb5 0cf8067 Author: Tihomir Surdilovic <tihomir@temporal.io> Date: Tue Feb 1 20:52:32 2022 -0500 Merge pull request #164 from antmendoza/fix-diagram-generation fix diagram generation serverlessworkflow/specification#587 commit 0cf8067 Author: Antonio Mendoza Pérez <antonio.mendoza@ikusi.com> Date: Tue Feb 1 22:54:21 2022 +0100 fix diagram generation serverlessworkflow/specification#587 Signed-off-by: Antonio Mendoza Pérez <antonio.mendoza@ikusi.com> commit 6d4dfb5 Author: Antonio Mendoza Pérez <antmendoza@gmail.com> Date: Tue Jan 11 08:18:08 2022 +0100 Fix workflow validator (#163) fix WorkflowValidator commit 2636805 Author: Antonio Mendoza Pérez <antmendoza@gmail.com> Date: Mon Jan 10 21:46:11 2022 +0100 ignore js files in test phase (#162) commit b335771 Author: Antonio Mendoza Pérez <antmendoza@gmail.com> Date: Mon Jan 10 21:39:13 2022 +0100 Handle compensatedBy in diagram generation (#161) handle compensatedBy diagram generation commit a89acd0 Author: Antonio Mendoza Pérez <antmendoza@gmail.com> Date: Tue Dec 28 14:41:38 2021 +0100 Code formatting (#160) * order-properties-on-serialization Signed-off-by: Antonio Mendoza Pérez <antmendoza@gmail.com> * code-formating Signed-off-by: Antonio Mendoza Pérez <antmendoza@gmail.com> commit 219768d Author: Antonio Mendoza Pérez <antmendoza@gmail.com> Date: Tue Dec 28 09:16:38 2021 +0100 order-properties-on-serialization (#159) commit 96763b9 Author: Antonio Mendoza Pérez <antmendoza@gmail.com> Date: Sat Dec 25 20:16:46 2021 +0100 Fix default values are removed on serialization (#156) * fix-remove-default-values Signed-off-by: Antonio Mendoza Pérez <antmendoza@gmail.com> * removed-ifObject Signed-off-by: Antonio Mendoza Pérez <antmendoza@gmail.com> commit d6fd5d8 Author: Antonio Mendoza Pérez <antmendoza@gmail.com> Date: Sat Dec 25 16:04:44 2021 +0100 update-package-version-4.0.0 (#157) * update-package-version-4.0.0 Signed-off-by: Antonio Mendoza Pérez <antmendoza@gmail.com> * update-package-version-4.0.0 Signed-off-by: Antonio Mendoza Pérez <antmendoza@gmail.com> commit 955dab0 Merge: 255c834 5424a3d Author: Antonio Mendoza Pérez <antmendoza@gmail.com> Date: Thu Dec 9 01:24:04 2021 +0100 Merge pull request #154 from serverlessworkflow/3.0.x changed-package-version
- Loading branch information
1 parent
5424a3d
commit 8549c07
Showing
124 changed files
with
13,436 additions
and
12,909 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Serveless Workflow JS SDK</title> | ||
<base href="/"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
</head> | ||
<body> | ||
<!-- | ||
Run http-server from the project root then navigate to http://localhost:8080/examples/browser/mermaid.html | ||
--> | ||
<div id="output"></div> | ||
<script src="../../dist/umd/index.umd.js"></script> | ||
<script type="text/javascript"> | ||
(() => { | ||
const { workflowBuilder, injectstateBuilder } = serverWorkflowSdk; | ||
<meta content="width=device-width, initial-scale=1" name="viewport"> | ||
</head> | ||
<body> | ||
<!-- | ||
Run http-server from the project root then navigate to http://localhost:8080/examples/browser/index.html | ||
--> | ||
<div id="output"></div> | ||
<script src="../../dist/umd/index.umd.js"></script> | ||
<script type="text/javascript"> | ||
(() => { | ||
const {workflowBuilder, injectstateBuilder} = serverWorkflowSdk; | ||
const outputDiv = document.getElementById('output'); | ||
const workflow = workflowBuilder() | ||
.id("helloworld") | ||
.version("1.0") | ||
.specVersion("0.8") | ||
.name("Hello World Workflow") | ||
.description("Inject Hello World") | ||
.start("Hello State") | ||
.states([ | ||
injectstateBuilder() | ||
.name("Hello State") | ||
.data({ | ||
"result": "Hello World!" | ||
}) | ||
.end(true) | ||
.build() | ||
]) | ||
.build(); | ||
.id("helloworld") | ||
.version("1.0") | ||
.specVersion("0.8") | ||
.name("Hello World Workflow") | ||
.description("Inject Hello World") | ||
.start("Hello State") | ||
.states([ | ||
injectstateBuilder() | ||
.name("Hello State") | ||
.data({ | ||
"result": "Hello World!" | ||
}) | ||
.end(true) | ||
.build() | ||
]) | ||
.build(); | ||
outputDiv.innerHTML = workflow.id; | ||
})(); | ||
</script> | ||
</body> | ||
})(); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ | ||
module.exports = { | ||
preset: 'ts-jest', | ||
testEnvironment: 'node' | ||
testEnvironment: 'node', | ||
testPathIgnorePatterns: [".d.ts", ".js"] | ||
}; |
Oops, something went wrong.