Skip to content

Commit a0dce6d

Browse files
authored
Merge pull request #743 from pmndrs/dev
Version 6.39.1
2 parents 69c61a6 + 985534e commit a0dce6d

8 files changed

Lines changed: 1042 additions & 1080 deletions

File tree

.gitignore

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

2930
# Node
3031
node_modules

esbuild.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { createRequire } from "module";
2-
import { glsl } from "esbuild-plugin-glsl";
3-
import glob from "tiny-glob";
42
import esbuild from "esbuild";
3+
import { glsl } from "esbuild-plugin-glsl";
4+
import { glob } from "node:fs/promises";
55

66
const require = createRequire(import.meta.url);
77
const pkg = require("./package");
@@ -19,7 +19,7 @@ const banner = `/**
1919
*/`;
2020

2121
const workers = {
22-
entryPoints: await glob("./src/**/worker.js"),
22+
entryPoints: await Array.fromAsync(glob("./src/**/worker.js")),
2323
outExtension: { ".js": ".txt" },
2424
outdir: "./temp",
2525
target: "es2019",
@@ -42,7 +42,7 @@ const demo = {
4242

4343
const manual = {
4444
entryPoints: ["./manual/assets/js/src/index.js"]
45-
.concat(await glob("./manual/assets/js/src/demos/*.js")),
45+
.concat(await Array.fromAsync(glob("./manual/assets/js/src/demos/*.js"))),
4646
outdir: "./manual/assets/js/dist",
4747
logLevel: "info",
4848
format: "iife",

eslint.config.js

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

package.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postprocessing",
3-
"version": "6.39.0",
3+
"version": "6.39.1",
44
"description": "A post processing library for three.js.",
55
"homepage": "https://github.com/pmndrs/postprocessing",
66
"license": "Zlib",
@@ -90,7 +90,7 @@
9090
"watch:js": "node esbuild -w"
9191
},
9292
"peerDependencies": {
93-
"three": ">= 0.168.0 < 0.184.0"
93+
"three": ">= 0.168.0 < 0.185.0"
9494
},
9595
"devDependencies": {
9696
"@tweakpane/core": "2.x.x",
@@ -102,7 +102,7 @@
102102
"cssnano": "7.x.x",
103103
"dat.gui": "0.x.x",
104104
"del-cli": "7.x.x",
105-
"esbuild": "0.27.x",
105+
"esbuild": "0.28.x",
106106
"esbuild-plugin-glsl": "1.x.x",
107107
"esdoc": "1.x.x",
108108
"esdoc-importpath-plugin": "1.x.x",
@@ -119,12 +119,10 @@
119119
"spatial-controls": "6.x.x",
120120
"stylelint": "17.x.x",
121121
"stylelint-config-standard-scss": "17.x.x",
122-
"stylelint-order": "7.x.x",
122+
"stylelint-order": "8.x.x",
123123
"three": "0.x.x",
124124
"three-demo": "5.x.x",
125-
"tiny-glob": "0.x.x",
126-
"tslib": "2.x.x",
127125
"tweakpane": "4.x.x",
128-
"typescript": "5.9.x"
126+
"typescript": "6.0.x"
129127
}
130128
}

0 commit comments

Comments
 (0)