Skip to content

Commit f9782ac

Browse files
v4.13.0 (#351)
1 parent 79d90c4 commit f9782ac

File tree

5 files changed

+1598
-1308
lines changed

5 files changed

+1598
-1308
lines changed

.eslintrc.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ module.exports = {
2222
'semi': ['error', 'always'],
2323
'space-before-function-paren': ['error', 'never'],
2424
'standard/no-callback-literal': 0,
25-
'node/no-callback-literal': 0,
25+
'n/no-callback-literal': 0,
26+
"object-shorthand": 0,
2627
}
2728
};

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [12.x, 14.x, 16.x, 18.x, 19.x]
12+
node-version: [14.x, 16.x, 18.x, 19.x]
1313

1414
steps:
1515
- uses: actions/checkout@v3

package.json

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,44 @@
11
{
22
"name": "irc-framework",
3-
"version": "4.12.1",
3+
"version": "4.13.0",
44
"description": "A better IRC framework for node.js",
55
"main": "src/",
66
"browser": "dist/browser/src/",
77
"dependencies": {
88
"buffer": "^6.0.3",
9-
"core-js": "^3.19.1",
10-
"eventemitter3": "^4.0.7",
9+
"core-js": "^3.27.2",
10+
"eventemitter3": "^5.0.0",
1111
"grapheme-splitter": "^1.0.4",
1212
"iconv-lite": "^0.6.3",
1313
"isomorphic-textencoder": "^1.0.1",
1414
"lodash": "^4.17.21",
1515
"middleware-handler": "^0.2.0",
16-
"regenerator-runtime": "^0.13.9",
17-
"socks": "^2.6.1",
16+
"regenerator-runtime": "^0.13.11",
17+
"socks": "^2.7.1",
1818
"stream-browserify": "^3.0.0",
19-
"util": "^0.12.4"
19+
"util": "^0.12.5"
2020
},
2121
"devDependencies": {
22-
"@babel/cli": "^7.16.0",
23-
"@babel/core": "^7.16.0",
24-
"@babel/preset-env": "^7.16.4",
25-
"chai": "^4.3.4",
22+
"@babel/cli": "^7.20.7",
23+
"@babel/core": "^7.20.12",
24+
"@babel/preset-env": "^7.20.2",
25+
"chai": "^4.3.7",
2626
"chai-subset": "^1.6.0",
27-
"compression-webpack-plugin": "^9.0.1",
28-
"eslint": "^8.3.0",
29-
"eslint-config-standard": "^16.0.3",
30-
"eslint-plugin-import": "^2.25.3",
27+
"compression-webpack-plugin": "^10.0.0",
28+
"eslint": "^8.32.0",
29+
"eslint-config-standard": "^17.0.0",
30+
"eslint-plugin-import": "^2.27.5",
31+
"eslint-plugin-n": "^15.6.1",
3132
"eslint-plugin-node": "^11.1.0",
32-
"eslint-plugin-promise": "^5.1.1",
33-
"mocha": "^9.1.3",
33+
"eslint-plugin-promise": "^6.1.1",
34+
"mocha": "^10.2.0",
3435
"npm-run-all": "^4.1.5",
3536
"nyc": "^15.1.0",
36-
"shx": "^0.3.3",
37-
"sinon": "^12.0.1",
37+
"shx": "^0.3.4",
38+
"sinon": "^15.0.1",
3839
"sinon-chai": "^3.7.0",
39-
"webpack": "^5.64.2",
40-
"webpack-cli": "^4.9.1"
40+
"webpack": "^5.75.0",
41+
"webpack-cli": "^5.0.1"
4142
},
4243
"scripts": {
4344
"test": "npm-run-all lint coverage",

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ module.exports = {
4646
!assetFilename.match(/\.map(\.(gz|br))?$/),
4747

4848
// Prevent warnings about entrypoint and asset size
49-
maxEntrypointSize: 307200, // 300KiB
50-
maxAssetSize: 307200, // 300KiB
49+
maxEntrypointSize: 332800, // 325KiB
50+
maxAssetSize: 332800, // 325KiB
5151
},
5252
};

0 commit comments

Comments
 (0)