Skip to content

Commit d0cfe70

Browse files
authored
Merge pull request #659 from pmndrs/dev
Version 6.36.3
2 parents 5a18321 + 44ac018 commit d0cfe70

File tree

6 files changed

+795
-783
lines changed

6 files changed

+795
-783
lines changed

demo/src/demos/SSAODemo.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ export class SSAODemo extends PostProcessingDemo {
182182
rings: 7,
183183
distanceThreshold: 0.02, // Render up to a distance of ~20 world units
184184
distanceFalloff: 0.0025, // with an additional ~2.5 units of falloff.
185-
rangeThreshold: 0.0003, // Occlusion proximity of ~0.3 world units
186-
rangeFalloff: 0.0001, // with ~0.1 units of falloff.
185+
rangeThreshold: 0.0003, // Occlusion proximity of ~0.3 world units
186+
rangeFalloff: 0.0001, // with ~0.1 units of falloff.
187187
luminanceInfluence: 0.7,
188188
minRadiusScale: 0.33,
189189
radius: 0.1,

eslint.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import aether from "eslint-config-aether";
2+
export default [...aether];

package.json

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postprocessing",
3-
"version": "6.36.2",
3+
"version": "6.36.3",
44
"description": "A post processing library for three.js.",
55
"homepage": "https://github.com/pmndrs/postprocessing",
66
"license": "Zlib",
@@ -55,9 +55,6 @@
5555
"./test/**/*"
5656
]
5757
},
58-
"eslintConfig": {
59-
"extends": "aether"
60-
},
6158
"scripts": {
6259
"ava": "ava",
6360
"build": "npm run clean && run-p build:css build:js:min build:dts",
@@ -73,39 +70,37 @@
7370
"hugo": "hugo -s manual --minify",
7471
"lint": "run-p lint:*",
7572
"lint:css": "stylelint --fix manual/assets/css/src",
76-
"lint:js": "eslint --ext .js --fix src demo/src manual/assets/js/src",
73+
"lint:js": "eslint --fix src demo/src manual/assets/js/src",
7774
"postcss": "postcss manual/assets/css/dist/index.css -o manual/assets/css/dist/index.css -c manual",
7875
"prepublishOnly": "npm test",
7976
"prewatch": "run-s clean copy build:css build:js",
8077
"test": "run-s lint build ava doc",
8178
"start": "hugo server -s manual -e development",
8279
"watch": "run-p watch:* start",
8380
"watch:css": "sass --no-source-map -I manual/assets/css/src/values manual/assets/css/src:manual/assets/css/dist -w",
84-
"watch:eslint": "esw -w --ext .js --color src demo/src manual/assets/js/src",
8581
"watch:js": "node esbuild -w"
8682
},
8783
"peerDependencies": {
88-
"three": ">= 0.157.0 < 0.169.0"
84+
"three": ">= 0.157.0 < 0.170.0"
8985
},
9086
"devDependencies": {
9187
"@tweakpane/core": "2.x.x",
9288
"@types/three": "0.x.x",
93-
"@typescript-eslint/eslint-plugin": "7.x.x",
94-
"@typescript-eslint/parser": "7.x.x",
89+
"@typescript-eslint/eslint-plugin": "8.x.x",
90+
"@typescript-eslint/parser": "8.x.x",
9591
"autoprefixer": "10.x.x",
9692
"ava": "6.x.x",
9793
"cpy-cli": "5.x.x",
9894
"cssnano": "7.x.x",
9995
"dat.gui": "0.x.x",
10096
"del-cli": "5.x.x",
101-
"esbuild": "0.23.x",
97+
"esbuild": "0.24.x",
10298
"esbuild-plugin-glsl": "1.x.x",
10399
"esdoc": "1.x.x",
104100
"esdoc-importpath-plugin": "1.x.x",
105101
"esdoc-standard-plugin": "1.x.x",
106-
"eslint": "8.x.x",
107-
"eslint-config-aether": "1.x.x",
108-
"eslint-watch": "8.x.x",
102+
"eslint": "9.x.x",
103+
"eslint-config-aether": "2.x.x",
109104
"gzipper": "8.x.x",
110105
"hugo-bin": "0.x.x",
111106
"npm-run-all": "4.x.x",

0 commit comments

Comments
 (0)