Skip to content

Commit 0fe4f8c

Browse files
committed
Update build tooling, add named export, fix dts clashes with ModuleResolution node16
fixes #355
1 parent 868c053 commit 0fe4f8c

10 files changed

+5467
-8350
lines changed

.eslintrc.cjs

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ module.exports = {
77
],
88
parserOptions: {
99
project: './tsconfig.eslint.json',
10-
extraFileExtensions: ['.cjs'],
1110
},
1211
rules: {
1312
'@typescript-eslint/naming-convention': [

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
node-version: 'latest'
2121
cache: 'npm'
2222
- run: npm ci
23+
- run: npm run test:types
2324
- run: npm run build
2425

2526
lint:

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ yarn add obs-websocket-js
4141

4242
### Standalone file / CDN build
4343

44-
Standalone js file is available from [the latest github release](https://github.com/obs-websocket-community-projects/obs-websocket-js/releases) or from jsdeliver & unpkg CDN's:
44+
Standalone js file is available from jsdeliver & unpkg CDN's:
4545

4646
```
4747
https://cdn.jsdelivr.net/npm/obs-websocket-js
@@ -65,19 +65,19 @@ In addition each version has both modern and legacy builds. Modern bundlers will
6565

6666
### Creating an OBS Websocket client
6767

68-
`OBSWebSocket` is available as the default export in ES Modules:
68+
`OBSWebSocket` is available as a named export in ES Modules:
6969

7070
```ts
71-
import OBSWebSocket from 'obs-websocket-js';
71+
import { OBSWebSocket } from 'obs-websocket-js';
7272

7373
const obs = new OBSWebSocket();
7474
```
7575

76-
When using commonjs `require()` it is available under the `default` object key:
76+
When using commonjs `require()` it is available under the `OBSWebSocket` object key:
7777

7878
```ts
79-
const {default: OBSWebSocket} = require('obs-websocket-js');
80-
const OBSWebSocket = require('obs-websocket-js').default;
79+
const { OBSWebSocket } = require('obs-websocket-js');
80+
const OBSWebSocket = require('obs-websocket-js').OBSWebSocket;
8181

8282
const obs = new OBSWebSocket();
8383
```

0 commit comments

Comments
 (0)