File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ Temporary Items
2525# IDE settings
2626.project
2727.idea
28+ .vscode
2829
2930# Node
3031node_modules
Original file line number Diff line number Diff line change 11import { createRequire } from "module" ;
2- import { glsl } from "esbuild-plugin-glsl" ;
3- import glob from "tiny-glob" ;
42import esbuild from "esbuild" ;
3+ import { glsl } from "esbuild-plugin-glsl" ;
4+ import { glob } from "node:fs/promises" ;
55
66const require = createRequire ( import . meta. url ) ;
77const pkg = require ( "./package" ) ;
@@ -19,7 +19,7 @@ const banner = `/**
1919 */` ;
2020
2121const 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
4343const 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" ,
Original file line number Diff line number Diff line change 11import aether from "eslint-config-aether" ;
2- export default [ ... aether ] ;
2+ export default aether ;
Original file line number Diff line number Diff line change 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" ,
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" ,
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" ,
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}
You can’t perform that action at this time.
0 commit comments