Skip to content

Commit

Permalink
chore(deps): bump the minor-and-patch group across 3 directories with…
Browse files Browse the repository at this point in the history
… 9 updates (#667)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matt Johnson-Pint <[email protected]>
  • Loading branch information
dependabot[bot] and mattjohnsonpint authored Dec 27, 2024
1 parent c2bc5e0 commit 22f084e
Show file tree
Hide file tree
Showing 7 changed files with 284 additions and 341 deletions.
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"
}
}

0 comments on commit 22f084e

Please sign in to comment.