@browserbasehq/browse-cli 0.1.5 → 0.2.0-alpha-a9424ff2eb7bbde3cca93ae8d3a0fbe240335504
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/LICENSE +1 -1
- package/README.md +5 -5
- package/dist/index.js +13204 -11991
- package/package.json +16 -16
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -317,18 +317,18 @@ Windows support requires WSL or TCP socket implementation.
|
|
|
317
317
|
```bash
|
|
318
318
|
# Clone and setup (in monorepo)
|
|
319
319
|
cd packages/cli
|
|
320
|
-
|
|
321
|
-
|
|
320
|
+
pnpm install # Install dependencies first!
|
|
321
|
+
pnpm run build # Build the CLI
|
|
322
322
|
|
|
323
323
|
# Run without building (for development)
|
|
324
|
-
|
|
324
|
+
pnpm run dev -- <command>
|
|
325
325
|
|
|
326
326
|
# Or with tsx directly
|
|
327
327
|
npx tsx src/index.ts <command>
|
|
328
328
|
|
|
329
329
|
# Run linting and formatting
|
|
330
|
-
|
|
331
|
-
|
|
330
|
+
pnpm run lint
|
|
331
|
+
pnpm run format
|
|
332
332
|
```
|
|
333
333
|
|
|
334
334
|
## License
|