Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5f84225
update: improve types
k0stik Feb 2, 2026
9cb0de6
chore: workflow/subworkflow types
k0stik Feb 5, 2026
93c4514
chore: types cleanups
k0stik Feb 9, 2026
8d2388a
chore: package.json
k0stik Feb 9, 2026
69990bf
chore: package.json
k0stik Feb 9, 2026
a7ad18a
chore: package.json
k0stik Feb 9, 2026
bece93f
chore: add coverage/ to .gitignore
k0stik Feb 10, 2026
6f0c453
chore: enum
k0stik Feb 10, 2026
8c491df
fix: io unit input
k0stik Feb 13, 2026
7b077d9
fix: add isMultiMaterial to workflow/subworkflow
k0stik Feb 17, 2026
e9dc550
chore: new standata
k0stik Mar 19, 2026
58d578f
chore: remove standata-related code + add render test
k0stik Mar 23, 2026
e7ce0b2
chore: cleanups
k0stik Mar 23, 2026
280701a
chore: cleanups
k0stik Mar 24, 2026
e2b1d8f
chore: cleanups
k0stik Mar 24, 2026
827ecfb
chore: use setUnitLinks from standata
k0stik Mar 24, 2026
811f189
chore: remove usePredefinedIds usage
k0stik Mar 24, 2026
883c28b
chore: cleanup
k0stik Mar 24, 2026
a15b0d6
chore: cleanups
k0stik Mar 25, 2026
a659ac4
chore: update deps
k0stik Mar 25, 2026
c9e2a0f
chore: improve types
k0stik Mar 25, 2026
b6fc703
chore: remove allowed* properties
k0stik Mar 26, 2026
e416b1c
chore: update standata
k0stik Apr 1, 2026
9fbef4a
chore: update esse
k0stik Apr 1, 2026
871a86d
chore: add workflow utils
k0stik Apr 1, 2026
d320f08
fix: systemName
k0stik Apr 3, 2026
e6fb985
chore: improve types
k0stik Apr 7, 2026
3b39cc1
chore: wode applications driver
k0stik Apr 8, 2026
472cdae
chore: export ApplicationsDriver interface
k0stik Apr 8, 2026
3c3edc6
update: add updateMethodData
k0stik Apr 10, 2026
1c1a8a9
chore: improve types
k0stik Apr 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}
}
],
"@babel/preset-react",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
Expand Down
3 changes: 1 addition & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"@exabyte-io/eslint-config"
],
"ignorePatterns": [
"dist/",
"src/workflows/workflows.js"
"dist/"
],
"settings": {
"import/resolver": {
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ build/
node_modules/
.eslintcache
.nyc_output/
coverage/
.idea/
src/workflows/workflows.js
.DS_Store

# Python
Expand Down
26 changes: 25 additions & 1 deletion .nycrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@
"all": true,
"include": [
"src/**/*.js",
"src/**/*.jsx"
"src/**/*.jsx",
"src/**/*.ts"
],
"exclude": [
"src/js/generated/**/*",
"tests/**/*",
"**/*.test.ts",
"**/*.spec.ts",
"**/*.d.ts"
],
"reporter": [
"text",
"html",
"lcov"
],
"check-coverage": true,
"branches": 80,
"lines": 85,
"functions": 80,
"statements": 85,
"sourceMap": true,
"instrument": true,
"require": [
"ts-node/register"
]
}

65 changes: 0 additions & 65 deletions build_workflows.js

This file was deleted.

Loading
Loading