Skip to content

Commit

Permalink
Update dependencies and workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsOnlyBinary committed Aug 29, 2024
1 parent 35e87c4 commit c30d595
Show file tree
Hide file tree
Showing 5 changed files with 1,923 additions and 2,391 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org/'

- name: Install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 19.x]
node-version: [16.x, 18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,39 +6,39 @@
"browser": "dist/browser/src/",
"dependencies": {
"buffer": "^6.0.3",
"core-js": "^3.27.2",
"eventemitter3": "^5.0.0",
"core-js": "^3.38.1",
"eventemitter3": "^5.0.1",
"grapheme-splitter": "^1.0.4",
"iconv-lite": "^0.6.3",
"isomorphic-textencoder": "^1.0.1",
"lodash": "^4.17.21",
"middleware-handler": "^0.2.0",
"regenerator-runtime": "^0.13.11",
"socks": "^2.7.1",
"regenerator-runtime": "^0.14.1",
"socks": "^2.8.3",
"stream-browserify": "^3.0.0",
"util": "^0.12.5"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"chai": "^4.3.7",
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"chai": "^4.5.0",
"chai-subset": "^1.6.0",
"compression-webpack-plugin": "^10.0.0",
"eslint": "^8.32.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"eslint-plugin-promise": "^6.6.0",
"mocha": "^10.7.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"shx": "^0.3.4",
"sinon": "^15.0.1",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"test": "npm-run-all lint coverage",
Expand Down
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module.exports = {
!assetFilename.match(/\.map(\.(gz|br))?$/),

// Prevent warnings about entrypoint and asset size
maxEntrypointSize: 332800, // 325KiB
maxAssetSize: 332800, // 325KiB
maxEntrypointSize: 343040, // 335KiB
maxAssetSize: 343040, // 335KiB
},
};
Loading

0 comments on commit c30d595

Please sign in to comment.