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 3 directories with 9 updates #667

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
486 changes: 218 additions & 268 deletions cli/package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
"prepack": "npm i && npm run build && oclif manifest"
},
"dependencies": {
"@inquirer/prompts": "^7.2.0",
"@inquirer/prompts": "^7.2.1",
"@oclif/core": "^4",
"@scarf/scarf": "^1.4.0",
"chalk": "^5.3.0",
"chokidar": "^4.0.2",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"gradient-string": "^3.0.0",
"ky": "^1.7.4",
"open": "^10.1.0",
Expand All @@ -48,13 +48,13 @@
"@types/node": "^22",
"@types/picomatch": "^3.0.1",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"oclif": "^4",
"ts-node": "^10",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
"typescript-eslint": "^8.18.2"
},
"files": [
"/bin",
Expand Down
8 changes: 1 addition & 7 deletions cli/src/commands/dev/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,7 @@ 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 | Error) => {
if (sourcePath instanceof Error) {
return;
}
const onAddOrChange = async (sourcePath: string) => {
const filename = path.basename(sourcePath);
const outputPath = path.join(appPath, "build", filename);
try {
Expand Down Expand Up @@ -248,9 +245,6 @@ 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
11 changes: 5 additions & 6 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 @@ -21,6 +21,6 @@
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^6.0.3"
"vite": "^6.0.5"
}
}
104 changes: 52 additions & 52 deletions tools/release-info/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 tools/release-info/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
"eslint": "^9.17.0",
"prettier": "3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
"typescript-eslint": "^8.18.2"
}
}
Loading