Skip to content

Commit

Permalink
Remove bundling from run build of extensions core
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Aug 16, 2024
1 parent 0e7d946 commit 46e617e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/tapisui-extensions-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "npx ts-node ./src/bundle.ts",
"build": "npm run bundle && npx tsc",
"build": "npx tsc",
"push": "npx tsc && npm publish --access public"
},
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,8 @@ const IOTab: React.FC<{ toggle: () => void }> = ({ toggle }) => {
<ListItem disablePadding>
<ListItemButton>
<ListItemText
primary={`'${key}' as ${value.type} ${getValueSource(
value
)}`}
secondary={value.description}
primary={`'${key}' ${getValueSource(value)}`}
secondary={`type: ${value.type}`}
/>
</ListItemButton>
</ListItem>
Expand Down Expand Up @@ -104,8 +102,8 @@ const IOTab: React.FC<{ toggle: () => void }> = ({ toggle }) => {
<ListItem disablePadding>
<ListItemButton>
<ListItemText
primary={`'${key}`}
secondary={(value as Workflows.Spec).type}
primary={`${key}`}
secondary={`type: ${(value as Workflows.Spec).type}`}
/>
</ListItemButton>
</ListItem>
Expand Down

0 comments on commit 46e617e

Please sign in to comment.