Skip to content
Merged
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
23 changes: 23 additions & 0 deletions packages/types/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# @roo-code/types

### Publish to NPM

First authenticate with NPM:

```sh
npm login
```

Next, manually bump the NPM package version:

```sh
cd packages/types/npm && npm version minor && cd -
```

Finally, publish to NPM:

```sh
pnpm --filter @roo-code/types npm:publish
```

Note that you'll be asked for an MFA code to complete the publish.
2 changes: 1 addition & 1 deletion packages/types/npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@roo-code/types",
"version": "1.25.0",
"version": "1.26.0",
"description": "TypeScript type definitions for Roo Code.",
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion webview-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"build": "tsc -b && vite build",
"build:nightly": "tsc -b && vite build --mode nightly",
"preview": "vite preview",
"clean": "rimraf ../src/webview-ui/build ../apps/vscode-nightly/build/webview-ui tsconfig.tsbuildinfo .turbo"
"clean": "rimraf ../src/webview-ui ../apps/vscode-nightly/build/webview-ui tsconfig.tsbuildinfo .turbo"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.6",
Expand Down
Loading