Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the minor-and-patch group across 13 directories with 11 updates #655

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
943 changes: 757 additions & 186 deletions cli/package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,28 +33,28 @@
"@oclif/core": "^4",
"@scarf/scarf": "^1.4.0",
"chalk": "^5.3.0",
"chokidar": "^4.0.1",
"chokidar": "^4.0.2",
"gradient-string": "^3.0.0",
"ky": "^1.7.3",
"ky": "^1.7.4",
"open": "^10.1.0",
"ora": "^8.1.1",
"picomatch": "^4.0.2",
"semver": "^7.6.3"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@eslint/js": "^9.17.0",
"@oclif/test": "^4",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22",
"@types/picomatch": "^3.0.1",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.16.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"oclif": "^4",
"ts-node": "^10",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
"typescript-eslint": "^8.18.1"
},
"files": [
"/bin",
Expand Down
8 changes: 7 additions & 1 deletion cli/src/commands/dev/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,10 @@ export default class DevCommand extends BaseCommand {
// Whenever any of the env files change, copy to the build directory.
// The runtime will automatically reload them when it detects a change to the copies in the build folder.

const onAddOrChange = async (sourcePath: string) => {
const onAddOrChange = async (sourcePath: string | Error) => {
if (sourcePath instanceof Error) {
return;
}
const filename = path.basename(sourcePath);
const outputPath = path.join(appPath, "build", filename);
try {
Expand Down Expand Up @@ -245,6 +248,9 @@ export default class DevCommand extends BaseCommand {
.on("add", onAddOrChange)
.on("change", onAddOrChange)
.on("unlink", async (sourcePath) => {
if (sourcePath instanceof Error) {
return;
}
const filename = path.basename(sourcePath);
const outputPath = path.join(appPath, "build", filename);
try {
Expand Down
9 changes: 4 additions & 5 deletions runtime/explorer/content/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion runtime/explorer/content/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^6.0.3"
}
Expand Down
126 changes: 117 additions & 9 deletions sdk/assemblyscript/examples/anthropic-functions/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/parser": "^8.18.0",
"@typescript-eslint/parser": "^8.18.1",
"assemblyscript": "^0.27.31",
"assemblyscript-prettier": "^3.0.1",
"eslint": "^9.17.0",
Expand Down
Loading
Loading