Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
24 changes: 0 additions & 24 deletions .github/workflows/publish.yml

This file was deleted.

42 changes: 42 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Release

on:
push:
branches:
- main

jobs:
version:
name: Version packages
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10

- name: Install deps
run: pnpm install --frozen-lockfile

- name: Create Release PR or Publish
uses: changesets/action@v1
with:
version: pnpm version:packages
publish: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}


11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@
"prettier:fix": "prettier --write .",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm clean && pnpm build",
"pre-commit": "pnpm lint-staged"
"pre-commit": "pnpm lint-staged",
"changeset": "changeset",
"version:packages": "changeset version",
"release": "changeset publish"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
Expand All @@ -42,8 +45,8 @@
},
"dependencies": {
"@browserbasehq/sdk": "^2.6.0",
"@mcp-ui/server": "^5.2.0",
"@browserbasehq/stagehand": "^2.4.3",
"@mcp-ui/server": "^5.2.0",
"@modelcontextprotocol/sdk": "^1.13.1",
"@smithery/cli": "^1.2.15",
"commander": "^14.0.0",
Expand All @@ -52,6 +55,7 @@
"zod": "^3.25.67"
},
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@eslint/js": "^9.29.0",
"eslint": "^9.29.0",
"eslint-plugin-react": "^7.37.5",
Expand All @@ -64,5 +68,8 @@
"typescript": "^5.6.2",
"typescript-eslint": "^8.35.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184"
}
Loading