Skip to content
Open
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
5 changes: 5 additions & 0 deletions .changeset/loose-birds-bow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"browse": patch
---

Updated `archiver` dependency to v8
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"@browserbasehq/stagehand": "workspace:*",
"@oclif/core": "^4.11.0",
"@vercel/detect-agent": "^1.2.3",
"archiver": "^7.0.1",
"archiver": "^8.0.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.5.0",
"ignore": "^7.0.5",
Expand All @@ -116,7 +116,7 @@
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/archiver": "^6.0.3",
"@types/archiver": "^8.0.0",
"@types/node": "^20.11.30",
"@types/semver": "^7.7.1",
"@types/ws": "^8.18.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/lib/functions/publish.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import archiver from "archiver";
import { TarArchive } from "archiver";
import ignore from "ignore";
import {
copyFileSync,
Expand Down Expand Up @@ -161,7 +161,7 @@ async function createArchive(root: string): Promise<{
try {
await new Promise<void>((resolvePromise, reject) => {
const output = createWriteStream(archivePath);
const archive = archiver("tar", {
const archive = new TarArchive({
gzip: true,
gzipOptions: { level: 9 },
});
Expand Down
93 changes: 46 additions & 47 deletions pnpm-lock.yaml

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

Loading