Skip to content

Commit

Permalink
fix: Use @wandelbots/nova package name
Browse files Browse the repository at this point in the history
  • Loading branch information
evrys committed Jul 10, 2024
1 parent 7b25074 commit c732ed9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
run: npx semantic-release
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# @wandelbots/nova-client
# @wandelbots/nova

The Wandelbots Nova client library provides convenient access to the Nova API from frontend JavaScript applications. In addition to typed methods for each API endpoint, we provide some higher level abstractions that manage the websocket connection state for tracking robot movement and handling jogging and program execution.

```bash
npm install @wandelbots/nova-client
npm install @wandelbots/nova
```

## Contributing

To set up nova-client for development, first clone the repo and run:
To set up nova for development, first clone the repo and run:

```bash
npm install
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@wandelbots/nova-client",
"name": "@wandelbots/nova",
"version": "0.0.0-semantically-released",
"description": "JS client for the Nova API",
"description": "Official JS client for the Nova API",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
Expand All @@ -16,7 +16,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/wandelbotsgmbh/nova-client.git"
"url": "https://github.com/wandelbotsgmbh/nova.git"
},
"keywords": [
"wandelbots",
Expand Down
20 changes: 10 additions & 10 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
module.exports = {
branches: [
'main',
{ name: 'alpha', prerelease: true },
{ name: 'beta', prerelease: true },
{ name: 'canary-*', prerelease: true, channel: 'canary' },
"main",
{ name: "alpha", prerelease: true },
{ name: "beta", prerelease: true },
{ name: "canary-*", prerelease: true, channel: "canary" },
],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
'@semantic-release/npm',
"@semantic-release/npm",
{
pkgRoot: './dist',
pkgRoot: "./dist",
},
],
'@semantic-release/github',
"@semantic-release/github",
],
}
}

0 comments on commit c732ed9

Please sign in to comment.