@browserbasehq/browse-cli 0.6.0 → 0.6.1-alpha-3a53ed4ea97e079b295059a338f1ef8e768f8919
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +13 -0
- package/.turbo/turbo-lint.log +14 -0
- package/CHANGELOG.md +8 -0
- package/dist/index.js +35542 -35536
- package/package.json +5 -12
- package/src/index.ts +2967 -0
- package/src/local-cdp-discovery.ts +292 -0
- package/src/local-strategy.ts +128 -0
- package/src/resolve-ws.ts +23 -0
- package/tests/cli.test.ts +647 -0
- package/tests/connect.test.ts +160 -0
- package/tests/local-cdp-discovery.test.ts +190 -0
- package/tests/local-strategy.test.ts +144 -0
- package/tests/mode.test.ts +198 -0
- package/tests/resolve-ws.test.ts +143 -0
- package/tsconfig.json +12 -0
- package/tsup.config.ts +24 -0
- package/vitest.config.ts +17 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
> @browserbasehq/browse-cli@0.6.0 build /home/runner/work/stagehand/stagehand/packages/cli
|
|
3
|
+
> tsup
|
|
4
|
+
|
|
5
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
6
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
+
[34mCLI[39m tsup v8.5.1
|
|
8
|
+
[34mCLI[39m Using tsup config: /home/runner/work/stagehand/stagehand/packages/cli/tsup.config.ts
|
|
9
|
+
[34mCLI[39m Target: node20
|
|
10
|
+
[34mCLI[39m Cleaning output folder
|
|
11
|
+
[34mCJS[39m Build start
|
|
12
|
+
[32mCJS[39m [1mdist/index.js [22m[32m6.40 MB[39m
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 2157ms
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
> @browserbasehq/browse-cli@0.6.0 lint /home/runner/work/stagehand/stagehand/packages/cli
|
|
3
|
+
> cd ../.. && prettier --check packages/cli && cd packages/cli && pnpm run eslint && pnpm run typecheck
|
|
4
|
+
|
|
5
|
+
Checking formatting...
|
|
6
|
+
All matched files use Prettier code style!
|
|
7
|
+
|
|
8
|
+
> @browserbasehq/browse-cli@0.6.0 eslint /home/runner/work/stagehand/stagehand/packages/cli
|
|
9
|
+
> eslint .
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
> @browserbasehq/browse-cli@0.6.0 typecheck /home/runner/work/stagehand/stagehand/packages/cli
|
|
13
|
+
> tsc --noEmit
|
|
14
|
+
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# @browserbasehq/browse-cli
|
|
2
|
+
|
|
3
|
+
## 0.6.1-alpha-3a53ed4ea97e079b295059a338f1ef8e768f8919
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`3a53ed4`](https://github.com/browserbase/stagehand/commit/3a53ed4ea97e079b295059a338f1ef8e768f8919), [`8fc16d2`](https://github.com/browserbase/stagehand/commit/8fc16d2e1845807103da6e62928b28e0de03ab90), [`78bcde8`](https://github.com/browserbase/stagehand/commit/78bcde88e28f147acc6ca9aef9753cd96c870c35), [`ebbdcd3`](https://github.com/browserbase/stagehand/commit/ebbdcd33cbd137d36c9469c5ef0f531ee45a0bd8), [`12703a6`](https://github.com/browserbase/stagehand/commit/12703a6659853e2afe2d28df71d8a9b916f9df65), [`cb586a1`](https://github.com/browserbase/stagehand/commit/cb586a14e46e616caa712afa6b7ceb4dc42b7fc6)]:
|
|
8
|
+
- @browserbasehq/stagehand@3.5.0-alpha-3a53ed4ea97e079b295059a338f1ef8e768f8919
|