Skip to content

Commit 74f5490

Browse files
committed
Update dependencies, fix emerging errors from this
1 parent 168e1f6 commit 74f5490

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

package.json

+23-23
Original file line numberDiff line numberDiff line change
@@ -26,46 +26,46 @@
2626
}
2727
],
2828
"devDependencies": {
29-
"@types/chai": "~4.2.12",
29+
"@types/chai": "~5.0.0",
3030
"@types/chai-spies": "~1.0.1",
31-
"@types/mocha": "~8.2.1",
32-
"@types/node": "~14.14.35",
33-
"@types/sinon": "~9.0.11",
34-
"@typescript-eslint/eslint-plugin": "^4.18.0",
35-
"@typescript-eslint/parser": "^4.18.0",
36-
"chai": "~4.3.4",
37-
"chai-spies": "~1.0.0",
31+
"@types/mocha": "~10.0.9",
32+
"@types/node": "~22.7.5",
33+
"@types/sinon": "~17.0.3",
34+
"@typescript-eslint/eslint-plugin": "^8.8.1",
35+
"@typescript-eslint/parser": "^8.8.1",
36+
"chai": "~5.1.1",
37+
"chai-spies": "~1.1.0",
3838
"coveralls": "~3.1.0",
3939
"cross-env": "~7.0.3",
40-
"eslint": "~7.22.0",
40+
"eslint": "~9.12.0",
4141
"git-revision-webpack-plugin": "~3.0.6",
42-
"gl-matrix": "~3.3.0",
43-
"glob": "~7.1.6",
44-
"http-server": "~0.12.3",
42+
"gl-matrix": "~3.4.3",
43+
"glob": "~11.0.0",
44+
"http-server": "~14.1.1",
4545
"jsonschema": "~1.4.0",
46-
"mocha": "~8.3.2",
47-
"mocha-junit-reporter": "~2.0.0",
46+
"mocha": "~10.7.3",
47+
"mocha-junit-reporter": "~2.1.1",
4848
"mocha-multi-reporters": "~1.5.1",
4949
"npm-run-all": "~4.1.5",
50-
"nyc": "~15.1.0",
50+
"nyc": "~17.1.0",
5151
"pug": "~3.0.2",
52-
"rimraf": "~3.0.2",
52+
"rimraf": "~6.0.1",
5353
"rxjs": "~6.6.6",
54-
"sinon": "~9.2.4",
54+
"sinon": "~19.0.2",
5555
"source-map-support": "~0.5.19",
56-
"ts-loader": "~8.0.18",
57-
"ts-node": "^9.1.1",
58-
"typedoc": "~0.20.32",
59-
"typescript": "~4.2.3",
56+
"ts-loader": "~9.5.1",
57+
"ts-node": "^10.9.2",
58+
"typedoc": "~0.26.8",
59+
"typescript": "~5.6.2",
6060
"url": "^0.11.0",
6161
"webpack": "^5.26.3",
6262
"webpack-bundle-analyzer": "^4.4.0",
63-
"webpack-cli": "^4.5.0",
63+
"webpack-cli": "^5.1.4",
6464
"webpack-glsl-loader": "~1.0.1",
6565
"webpack-rxjs-externals": "~2.0.0"
6666
},
6767
"peerDependencies": {
68-
"rxjs": "~6.6.6"
68+
"rxjs": "~7.8.1"
6969
},
7070
"scripts": {
7171
"build": "webpack-cli --mode development && node pugconfig.js",

source/shadowpass.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export class ShadowPass extends Initializable {
126126
this._shadowType = ShadowPass.ShadowMappingType.HardLinear;
127127
}
128128

129-
let filter = gl.LINEAR;
129+
let filter: number = gl.LINEAR;
130130
if (type === gl.FLOAT && !this._context.supportsTextureFloatLinear) {
131131
filter = gl.NEAREST;
132132
}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)