Skip to content

Commit 50435d1

Browse files
authored
fix: add string decoder as a dependency (#522)
1 parent ec65f43 commit 50435d1

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.github/workflows/bundlers.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ jobs:
1515
os: [ubuntu-latest, windows-latest, macos-latest]
1616
node-version: [12.x, 14.x, 16.x, 18.x, 20.x]
1717
bundler: ['browserify', 'esbuild', 'rollup', 'webpack']
18+
exclude:
19+
- os: windows-latest
20+
node-version: 12.x
21+
- os: windows-latest
22+
node-version: 14.x
1823
steps:
1924
- name: Checkout
2025
uses: actions/checkout@v3

.github/workflows/node.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest, windows-latest, macos-latest]
1616
node-version: [12.x, 14.x, 16.x, 18.x, 20.x]
17+
exclude:
18+
- os: windows-latest
19+
node-version: 12.x
20+
- os: windows-latest
21+
node-version: 14.x
1722
steps:
1823
- name: Checkout
1924
uses: actions/checkout@v3

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@
4848
"abort-controller": "^3.0.0",
4949
"buffer": "^6.0.3",
5050
"events": "^3.3.0",
51-
"process": "^0.11.10"
51+
"process": "^0.11.10",
52+
"string_decoder": "^1.3.0"
5253
},
5354
"devDependencies": {
5455
"@babel/core": "^7.17.10",

0 commit comments

Comments
 (0)