Skip to content

Commit 824d20e

Browse files
committed
feat: 3.0.0
1 parent c044891 commit 824d20e

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,34 @@ node_modules
99
stats.html
1010
.nyc_output
1111
docs
12+
13+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
14+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
15+
16+
# User-specific stuff
17+
.idea/**/workspace.xml
18+
.idea/**/tasks.xml
19+
.idea/**/usage.statistics.xml
20+
.idea/**/dictionaries
21+
.idea/**/shelf
22+
23+
# Generated files
24+
.idea/**/contentModel.xml
25+
26+
# Sensitive or high-churn files
27+
.idea/**/dataSources/
28+
.idea/**/dataSources.ids
29+
.idea/**/dataSources.local.xml
30+
.idea/**/sqlDataSources.xml
31+
.idea/**/dynamic.xml
32+
.idea/**/uiDesigner.xml
33+
.idea/**/dbnavigator.xml
34+
35+
# Mongo Explorer plugin
36+
.idea/**/mongoSettings.xml
37+
38+
# File-based project format
39+
*.iws
40+
41+
# IntelliJ
42+
out/

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
FROM node:16.17-alpine3.15
1+
FROM node:20-alpine
22
WORKDIR /build
33
COPY ["package.json", "yarn.lock", "./"]
4-
RUN yarn global add typedoc@^0.23.7
54
RUN yarn install
65
ENV NODE_ENV=production
76
COPY . .

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Supports Node.js and the browser.
88

99
## Features
1010
- Works on the server with Node.js, and in browsers
11+
- ES Modules support
1112
- Modern, Promise-based API with TypeScript support designed with async/wait in mind
1213
- Type-safe functions for all HTTP endpoints
1314
- Fully-featured WebSocket client with events and automatic reconnection

0 commit comments

Comments
 (0)