Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adbayb committed Nov 17, 2024
1 parent 838b409 commit 65bac40
Show file tree
Hide file tree
Showing 12 changed files with 1,264 additions and 355 deletions.
2 changes: 1 addition & 1 deletion examples/default/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"termost": "workspace:^"
},
"devDependencies": {
"@types/node": "22.8.4",
"@types/node": "22.9.0",
"esbuild-register": "3.6.0"
}
}
8 changes: 4 additions & 4 deletions examples/task/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ program
.task({
key: "computedFromOtherTaskValues",
label: "Task can also access other persisted task values",
async handler(context) {
handler(context) {
if (context.size > 2000) {
return Promise.resolve("big" as const);
return "big" as const;
}

return Promise.resolve("small" as const);
return "small" as const;
},
})
.task({
Expand Down Expand Up @@ -68,7 +68,7 @@ program
.task({
handler(context) {
helpers.message(
`If you don't specify a label, the handler is executed in "live mode" (the output is not hidden by the label and is displayed gradually).`,
'If you don\'t specify a label, the handler is executed in "live mode" (the output is not hidden by the label and is displayed gradually).',
{ label: "Label & console output" },
);

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"release:version": "stack release --tag",
"release:publish": "stack release --publish"
},
"packageManager": "pnpm@9.12.3",
"packageManager": "pnpm@9.13.2",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0",
Expand All @@ -25,6 +25,6 @@
},
"prettier": "@adbayb/stack/prettier",
"devDependencies": {
"@adbayb/stack": "2.0.0"
"@adbayb/stack": "2.5.0"
}
}
Loading

0 comments on commit 65bac40

Please sign in to comment.