Skip to content

Commit 9e484cb

Browse files
chore: upgrade googleapis to ^149.0.0 (#1152)
Upgrades the `googleapis` dependency to `^149.0.0` as requested in issue #1150. Also includes auto-formatting in `src/core/files.ts` applied during the process. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> Co-authored-by: sqrrrl <346343+sqrrrl@users.noreply.github.com>
1 parent 08e51a3 commit 9e484cb

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"find-up": "^7.0.0",
6767
"fuzzy": "^0.1.3",
6868
"google-auth-library": "^9.15.1",
69-
"googleapis": "^148.0.0",
69+
"googleapis": "^149.0.0",
7070
"googleapis-common": "7.2.0",
7171
"inflection": "^3.0.2",
7272
"inquirer": "^12.6.0",

src/core/files.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,11 @@ export class Files {
574574
}
575575

576576
try {
577-
const fd = await fs.open(targetPath, fs.constants.O_WRONLY | fs.constants.O_CREAT | fs.constants.O_TRUNC | fs.constants.O_NOFOLLOW, 0o644);
577+
const fd = await fs.open(
578+
targetPath,
579+
fs.constants.O_WRONLY | fs.constants.O_CREAT | fs.constants.O_TRUNC | fs.constants.O_NOFOLLOW,
580+
0o644,
581+
);
578582
try {
579583
await fs.writeFile(fd, file.source);
580584
} finally {

0 commit comments

Comments
 (0)