Skip to content

Commit

Permalink
ui: Define @cockroachlabs/crdb-protobuf-client package
Browse files Browse the repository at this point in the history
The main idea is to have reusable protobuf client which can be used
outside of Admin UI.

Package can be published with following command:
```
yarn publish --access public --no-git-tag-version --patch
```

Release note: None

Release justification: non production code changes
  • Loading branch information
koorosh committed Aug 28, 2020
1 parent 59a52f1 commit 8ef7ad2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pkg/ui/src/js/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "@cockroachlabs/crdb-protobuf-client",
"version": "0.0.0",
"description": "Javascript client for use by CockroachDB UI",
"main": "./protos.js",
"types": "./protos.d.ts",
"license": "SEE LICENSE IN github.com/cockroachdb/cockroach/LICENSE",
"files": [
"protos.d.ts",
"protos.js"
],
"peerDependencies": {
"protobufjs": "^6.8.8",
"typescript": "^3.7.5"
}
}

0 comments on commit 8ef7ad2

Please sign in to comment.