Skip to content

Commit

Permalink
fix: Use the right dist file paths in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
evrys committed Jul 11, 2024
1 parent 08bc07c commit 3d1786a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ npm install @wandelbots/nova

## Usage

The core of this package is the `NovaClient`, which represents a connection to a configured robot cell on a given Nova instance.
The core of this package is the `NovaClient`, which represents a connection to a configured robot cell on a given Nova instance:

```ts
import { createNovaClient } from "@wandelbots/nova"
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "@wandelbots/nova",
"type": "module",
"version": "0.0.0-semantically-released",
"description": "Official JS client for the Nova API",
"exports": {
".": {
"import": "./dist/index.mjs",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
Expand Down

0 comments on commit 3d1786a

Please sign in to comment.