@tangle-network/browser-agent-driver 0.14.0 → 0.14.1
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/README.md +7 -1
- package/dist/cli.js +0 -0
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -232,7 +232,13 @@ npm run skills:install
|
|
|
232
232
|
|
|
233
233
|
## Publishing
|
|
234
234
|
|
|
235
|
-
|
|
235
|
+
Versioning and releases are automated via [Changesets](https://github.com/changesets/changesets).
|
|
236
|
+
|
|
237
|
+
**Contributors:** add a changeset to your PR with `pnpm changeset` — pick patch / minor / major and write a one-line summary. The CLI creates a markdown file under `.changeset/` to commit alongside your code.
|
|
238
|
+
|
|
239
|
+
**Maintainers:** when PRs with changesets merge to `main`, the [changesets workflow](./.github/workflows/changesets.yml) automatically opens (or updates) a "Release: version packages" PR that bumps `package.json` and writes `CHANGELOG.md`. Merging that PR pushes a `browser-agent-driver-vX.Y.Z` git tag, which fires the existing [`release.yml`](./.github/workflows/release.yml) and [`publish-npm.yml`](./.github/workflows/publish-npm.yml) workflows that create the GitHub release tarball and publish to npm with provenance.
|
|
240
|
+
|
|
241
|
+
You stay in control of *when* releases ship; the bump math, changelog, tagging, and publishing are all automated. See [`.changeset/README.md`](./.changeset/README.md) for the full contributor flow.
|
|
236
242
|
|
|
237
243
|
## Development
|
|
238
244
|
|
package/dist/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/browser-agent-driver",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"description": "LLM-driven browser agent for UI automation, testing, and evaluation",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -32,6 +32,9 @@
|
|
|
32
32
|
"clean": "rm -rf dist",
|
|
33
33
|
"test": "vitest run",
|
|
34
34
|
"test:watch": "vitest",
|
|
35
|
+
"changeset": "changeset",
|
|
36
|
+
"version-packages": "changeset version && pnpm install --lockfile-only --no-frozen-lockfile",
|
|
37
|
+
"release-tag": "changeset tag && git push --follow-tags",
|
|
35
38
|
"auth:save-state": "node ./scripts/save-storage-state.mjs",
|
|
36
39
|
"auth:check-state": "node ./scripts/check-storage-state.mjs",
|
|
37
40
|
"skills:install": "node ./scripts/install-skills.mjs",
|
|
@@ -115,6 +118,8 @@
|
|
|
115
118
|
"devDependencies": {
|
|
116
119
|
"@ai-sdk/anthropic": "^3.0.49",
|
|
117
120
|
"@ai-sdk/google": "^3.0.33",
|
|
121
|
+
"@changesets/changelog-github": "^0.6.0",
|
|
122
|
+
"@changesets/cli": "^2.30.0",
|
|
118
123
|
"@types/node": "^20.10.0",
|
|
119
124
|
"@types/pngjs": "^6.0.5",
|
|
120
125
|
"classic-level": "^3.0.0",
|