Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Temporary Items
# IDE settings
.project
.idea
.vscode

# Node
node_modules
Expand Down
8 changes: 4 additions & 4 deletions esbuild.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createRequire } from "module";
import { glsl } from "esbuild-plugin-glsl";
import glob from "tiny-glob";
import esbuild from "esbuild";
import { glsl } from "esbuild-plugin-glsl";
import { glob } from "node:fs/promises";

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

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

const manual = {
entryPoints: ["./manual/assets/js/src/index.js"]
.concat(await glob("./manual/assets/js/src/demos/*.js")),
.concat(await Array.fromAsync(glob("./manual/assets/js/src/demos/*.js"))),
outdir: "./manual/assets/js/dist",
logLevel: "info",
format: "iife",
Expand Down
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import aether from "eslint-config-aether";
export default [...aether];
export default aether;
12 changes: 5 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postprocessing",
"version": "6.39.0",
"version": "6.39.1",
"description": "A post processing library for three.js.",
"homepage": "https://github.com/pmndrs/postprocessing",
"license": "Zlib",
Expand Down Expand Up @@ -90,7 +90,7 @@
"watch:js": "node esbuild -w"
},
"peerDependencies": {
"three": ">= 0.168.0 < 0.184.0"
"three": ">= 0.168.0 < 0.185.0"
},
"devDependencies": {
"@tweakpane/core": "2.x.x",
Expand All @@ -102,7 +102,7 @@
"cssnano": "7.x.x",
"dat.gui": "0.x.x",
"del-cli": "7.x.x",
"esbuild": "0.27.x",
"esbuild": "0.28.x",
"esbuild-plugin-glsl": "1.x.x",
"esdoc": "1.x.x",
"esdoc-importpath-plugin": "1.x.x",
Expand All @@ -119,12 +119,10 @@
"spatial-controls": "6.x.x",
"stylelint": "17.x.x",
"stylelint-config-standard-scss": "17.x.x",
"stylelint-order": "7.x.x",
"stylelint-order": "8.x.x",
"three": "0.x.x",
"three-demo": "5.x.x",
"tiny-glob": "0.x.x",
"tslib": "2.x.x",
"tweakpane": "4.x.x",
"typescript": "5.9.x"
"typescript": "6.0.x"
}
}
Loading
Loading