Skip to content

Commit 835183a

Browse files
authored
Merge pull request #738 from pmndrs/dev
Version 6.38.3
2 parents 0742c37 + 249e2a2 commit 835183a

File tree

6 files changed

+1306
-1285
lines changed

6 files changed

+1306
-1285
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ Temporary Items
2525
# IDE settings
2626
.project
2727
.idea
28-
.vscore
2928

3029
# Node
3130
node_modules
@@ -37,6 +36,7 @@ build/
3736
public/
3837
temp/
3938
resources/
39+
pagefind/
4040
*.lock
4141
*.log
4242
*.tmp

demo/src/demos/objects/ObjectCloud.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function create(amount = 30, range = 10.0) {
2828
new SphereGeometry(1, 16, 16)
2929
];
3030

31-
for(let i = 0, j = 0, l = geometries.length; i < amount; ++i, j = ++j % l) {
31+
for(let i = 0, j = 0, l = geometries.length; i < amount; ++i, j = (j + 1) % l) {
3232

3333
const material = new MeshPhongMaterial({
3434
color: 0xffffff * Math.random()

manual/assets/js/src/demos/smaa.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ window.addEventListener("load", () => load().then((assets) => {
164164

165165
});
166166

167-
let subfolder = folder.addFolder({ title: "Edge Detection", expanded: false });
167+
const subfolder = folder.addFolder({ title: "Edge Detection", expanded: false });
168168
subfolder.addBinding(edgeDetectionMaterial, "edgeDetectionMode", { options: EdgeDetectionMode });
169169
subfolder.addBinding(edgeDetectionMaterial, "edgeDetectionThreshold", { min: 0.01, max: 0.3, step: 1e-4 });
170170
subfolder.addBinding(edgeDetectionMaterial, "predicationMode", { options: PredicationMode });

package.json

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postprocessing",
3-
"version": "6.38.2",
3+
"version": "6.38.3",
44
"description": "A post processing library for three.js.",
55
"homepage": "https://github.com/pmndrs/postprocessing",
66
"license": "Zlib",
@@ -90,17 +90,15 @@
9090
"watch:js": "node esbuild -w"
9191
},
9292
"peerDependencies": {
93-
"three": ">= 0.157.0 < 0.183.0"
93+
"three": ">= 0.157.0 < 0.184.0"
9494
},
9595
"devDependencies": {
9696
"@tweakpane/core": "2.x.x",
9797
"@types/node": "25.x.x",
9898
"@types/three": "0.x.x",
99-
"@typescript-eslint/eslint-plugin": "8.x.x",
100-
"@typescript-eslint/parser": "8.x.x",
10199
"autoprefixer": "10.x.x",
102100
"ava": "6.x.x",
103-
"cpy-cli": "6.x.x",
101+
"cpy-cli": "7.x.x",
104102
"cssnano": "7.x.x",
105103
"dat.gui": "0.x.x",
106104
"del-cli": "7.x.x",
@@ -109,18 +107,18 @@
109107
"esdoc": "1.x.x",
110108
"esdoc-importpath-plugin": "1.x.x",
111109
"esdoc-standard-plugin": "1.x.x",
112-
"eslint": "9.x.x",
110+
"eslint": "10.x.x",
113111
"eslint-config-aether": "2.x.x",
114112
"gzipper": "8.x.x",
115113
"hugo-bin": "0.x.x",
116114
"npm-run-all": "4.x.x",
117115
"postcss": "8.x.x",
118116
"postcss-cli": "11.x.x",
119-
"postcss-preset-env": "10.x.x",
117+
"postcss-preset-env": "11.x.x",
120118
"sass": "1.x.x",
121119
"spatial-controls": "6.x.x",
122-
"stylelint": "16.x.x",
123-
"stylelint-config-standard-scss": "16.x.x",
120+
"stylelint": "17.x.x",
121+
"stylelint-config-standard-scss": "17.x.x",
124122
"stylelint-order": "7.x.x",
125123
"three": "0.x.x",
126124
"three-demo": "5.x.x",

0 commit comments

Comments
 (0)