Skip to content

Commit

Permalink
Fix build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Corb3nik committed Dec 5, 2024
1 parent 5b7cfaa commit ae9b83e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
dist/
node_modules/
node_modules/
.DS_Store
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "convert-tools",
"name": "Convert Tools",
"version": "0.0.1",
"version": "0.0.2",
"description": "Collection of tools for encoding, decoding, and data format conversions",
"author": {
"name": "Caido Labs Inc.",
Expand Down
7 changes: 5 additions & 2 deletions packages/workflows/scripts/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,11 @@ const writeWorkflowDefinition = (workflowDir, definition) => {
const generateCodeInput = (jsFile) => {
const code = fs.readFileSync(jsFile, "utf8");
return {
data: code,
kind: "string",
alias: "code",
value: {
data: code,
kind: "string",
},
};
}

Expand Down

0 comments on commit ae9b83e

Please sign in to comment.