From 6dc279d31830f50e51fe2c35aadf72bf3a719974 Mon Sep 17 00:00:00 2001 From: "Raoul v. R" Date: Sat, 17 Jun 2023 16:39:34 +0200 Subject: [PATCH 1/7] Rename to index --- types/{postprocessing.d.ts => index.ts} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename types/{postprocessing.d.ts => index.ts} (100%) diff --git a/types/postprocessing.d.ts b/types/index.ts similarity index 100% rename from types/postprocessing.d.ts rename to types/index.ts From 540f7a763229cba59d9d761812b5311f933ab437 Mon Sep 17 00:00:00 2001 From: "Raoul v. R" Date: Sat, 17 Jun 2023 17:17:12 +0200 Subject: [PATCH 2/7] Update esbuild config --- esbuild.mjs => esbuild.js | 45 ++++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 22 deletions(-) rename esbuild.mjs => esbuild.js (76%) diff --git a/esbuild.mjs b/esbuild.js similarity index 76% rename from esbuild.mjs rename to esbuild.js index b3bd0d0b3..3eedc0a3d 100644 --- a/esbuild.mjs +++ b/esbuild.js @@ -19,10 +19,10 @@ const banner = `/** */`; const workers = { - entryPoints: await glob("src/**/worker.js"), + entryPoints: await glob("./src/**/worker.js"), outExtension: { ".js": ".txt" }, - outdir: "tmp", - target: "es6", + outdir: "./tmp", + target: "es2019", logLevel: "info", format: "iife", bundle: true, @@ -30,8 +30,8 @@ const workers = { }; const demo = { - entryPoints: ["demo/src/index.js"], - outdir: "public/demo", + entryPoints: ["./demo/src/index.js"], + outdir: "./public/demo", target: "es6", logLevel: "info", format: "iife", @@ -41,9 +41,9 @@ const demo = { }; const manual = { - entryPoints: ["manual/assets/js/src/index.js"] - .concat(await glob("manual/assets/js/src/demos/*.js")), - outdir: "manual/assets/js/dist", + entryPoints: ["./manual/assets/js/src/index.js"] + .concat(await glob("./manual/assets/js/src/demos/*.js")), + outdir: "./manual/assets/js/dist", logLevel: "info", format: "iife", target: "es6", @@ -54,8 +54,8 @@ const manual = { }; await esbuild.build({ - entryPoints: ["manual/assets/js/libs/vendor.js"], - outdir: "manual/assets/js/dist/libs", + entryPoints: ["./manual/assets/js/libs/vendor.js"], + outdir: "./manual/assets/js/dist/libs", globalName: "VENDOR", target: "es6", logLevel: "info", @@ -82,8 +82,8 @@ if(process.argv.includes("-w")) { } await esbuild.build({ - entryPoints: ["src/index.js"], - outfile: `build/${pkg.name}.esm.js`, + entryPoints: ["./src/index.js"], + outfile: "./build/index.js", banner: { js: banner }, logLevel: "info", format: "esm", @@ -93,31 +93,32 @@ await esbuild.build({ plugins }); +// @todo Remove in next major release. + await esbuild.build({ - entryPoints: ["src/index.js"], - outfile: `build/${pkg.name}.mjs`, + entryPoints: ["./src/index.js"], + outfile: "./build/index.cjs", banner: { js: banner }, logLevel: "info", - format: "esm", + format: "cjs", target: "es2019", bundle: true, external, plugins }); -// @todo Remove in next major release. const globalName = pkg.name.replace(/-/g, "").toUpperCase(); const requireShim = "if(typeof window===\"object\"&&!window.require)window.require=()=>window.THREE;"; const footer = `if(typeof module==="object"&&module.exports)module.exports=${globalName};`; await esbuild.build({ - entryPoints: ["src/index.js"], - outfile: `build/${pkg.name}.js`, + entryPoints: ["./src/index.js"], + outfile: `./build/${pkg.name}.js`, banner: { js: `${banner}\n${requireShim}` }, footer: { js: footer }, logLevel: "info", format: "iife", - target: "es6", + target: "es2019", bundle: true, globalName, external, @@ -125,13 +126,13 @@ await esbuild.build({ }); await esbuild.build({ - entryPoints: ["src/index.js"], - outfile: `build/${pkg.name}.min.js`, + entryPoints: ["./src/index.js"], + outfile: `./build/${pkg.name}.min.js`, banner: { js: `${banner}\n${requireShim}` }, footer: { js: footer }, logLevel: "info", format: "iife", - target: "es6", + target: "es2019", bundle: true, globalName, external, From 0a61822431e46ba33a98b0092a2f43b2f329eef7 Mon Sep 17 00:00:00 2001 From: "Raoul v. R" Date: Sat, 17 Jun 2023 17:30:18 +0200 Subject: [PATCH 3/7] Change type to module Fixes #490 and #485 --- package.json | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/package.json b/package.json index 5748029ce..e5f9ba5c2 100644 --- a/package.json +++ b/package.json @@ -3,20 +3,17 @@ "version": "6.31.2", "description": "A post processing library that provides the means to implement image filter effects for three.js.", "homepage": "https://github.com/pmndrs/postprocessing", - "sideEffects": false, "license": "Zlib", - "main": "build/postprocessing.js", - "module": "build/postprocessing.esm.js", - "types": "types/postprocessing.d.ts", + "type": "module", + "sideEffects": false, + "main": "./build/index.js", + "module": "./build/index.js", + "types": "./types/index.d.ts", "exports": { ".": { - "types": "./types/postprocessing.d.ts", - "import": "./build/postprocessing.esm.js", - "require": "./build/postprocessing.js" - }, - "./module": { - "types": "./types/postprocessing.d.ts", - "import": "./build/postprocessing.mjs" + "types": "./types/index.d.ts", + "import": "./build/index.js", + "require": "./build/index.cjs" } }, "keywords": [ @@ -46,8 +43,8 @@ "url": "https://github.com/pmndrs/postprocessing/issues" }, "files": [ - "build", - "types" + "./build", + "./types" ], "engines": { "node": ">= 0.13.2" @@ -55,8 +52,8 @@ "scripts": { "ava": "ava", "build:css": "sass --no-source-map -I manual/assets/css/src/values manual/assets/css/src:manual/assets/css/dist", - "build:js": "node esbuild.mjs", - "build:js:min": "node esbuild.mjs -m", + "build:js": "node esbuild", + "build:js:min": "node esbuild -m", "clean": "del-cli build tmp manual/resources manual/assets/**/dist public", "copy": "copyfiles -u 2 \"demo/static/**/*\" public/demo", "deploy": "run-s copy postcss hugo gzip", @@ -74,12 +71,12 @@ "watch": "run-p watch:* start", "watch:css": "sass --no-source-map -I manual/assets/css/src/values manual/assets/css/src:manual/assets/css/dist -w", "watch:eslint": "esw -w --ext .js --color src demo/src manual/assets/js/src", - "watch:js": "node esbuild.mjs -w" + "watch:js": "node esbuild -w" }, "ava": { "failFast": true, "files": [ - "test/**/*" + "./test/**/*" ] }, "eslintConfig": { From 30ecc1aa2006a170e9151a3d285c814b503af193 Mon Sep 17 00:00:00 2001 From: "Raoul v. R" Date: Sat, 17 Jun 2023 17:31:27 +0200 Subject: [PATCH 4/7] Update tests --- test/core/{EffectComposer.mjs => EffectComposer.js} | 2 +- test/core/{GaussKernel.mjs => GaussKernel.js} | 2 +- ...ideMaterialManager.mjs => OverrideMaterialManager.js} | 2 +- test/core/{Resolution.mjs => Resolution.js} | 2 +- test/core/{Selection.mjs => Selection.js} | 2 +- test/core/{Timer.mjs => Timer.js} | 2 +- test/effects/{BloomEffect.mjs => BloomEffect.js} | 2 +- test/effects/{BokehEffect.mjs => BokehEffect.js} | 2 +- ...essContrastEffect.mjs => BrightnessContrastEffect.js} | 2 +- ...AberrationEffect.mjs => ChromaticAberrationEffect.js} | 2 +- .../{ColorAverageEffect.mjs => ColorAverageEffect.js} | 2 +- .../{ColorDepthEffect.mjs => ColorDepthEffect.js} | 2 +- test/effects/{DepthEffect.mjs => DepthEffect.js} | 2 +- .../{DepthOfFieldEffect.mjs => DepthOfFieldEffect.js} | 2 +- test/effects/{DotScreenEffect.mjs => DotScreenEffect.js} | 2 +- test/effects/{Effect.mjs => Effect.js} | 2 +- test/effects/{FXAAEffect.mjs => FXAAEffect.js} | 2 +- ...ammaCorrectionEffect.mjs => GammaCorrectionEffect.js} | 2 +- test/effects/{GlitchEffect.mjs => GlitchEffect.js} | 2 +- test/effects/{GodRaysEffect.mjs => GodRaysEffect.js} | 2 +- test/effects/{GridEffect.mjs => GridEffect.js} | 2 +- .../{HueSaturationEffect.mjs => HueSaturationEffect.js} | 2 +- test/effects/{LUT1DEffect.mjs => LUT1DEffect.js} | 2 +- test/effects/{LUT3DEffect.mjs => LUT3DEffect.js} | 2 +- test/effects/{NoiseEffect.mjs => NoiseEffect.js} | 2 +- test/effects/{OutlineEffect.mjs => OutlineEffect.js} | 2 +- .../{PixelationEffect.mjs => PixelationEffect.js} | 2 +- ...{RealisticBokehEffect.mjs => RealisticBokehEffect.js} | 2 +- test/effects/{SMAAEffect.mjs => SMAAEffect.js} | 2 +- test/effects/{SSAOEffect.mjs => SSAOEffect.js} | 2 +- test/effects/{ScanlineEffect.mjs => ScanlineEffect.js} | 2 +- ...{SelectiveBloomEffect.mjs => SelectiveBloomEffect.js} | 2 +- test/effects/{SepiaEffect.mjs => SepiaEffect.js} | 2 +- test/effects/{ShockWaveEffect.mjs => ShockWaveEffect.js} | 2 +- test/effects/{TextureEffect.mjs => TextureEffect.js} | 2 +- test/effects/{TiltShiftEffect.mjs => TiltShiftEffect.js} | 2 +- .../{ToneMappingEffect.mjs => ToneMappingEffect.js} | 2 +- test/effects/{VignetteEffect.mjs => VignetteEffect.js} | 2 +- test/effects/blending/{BlendMode.mjs => BlendMode.js} | 2 +- test/images/RawImageData.js | 8 ++++++++ test/images/RawImageData.mjs | 9 --------- .../{TetrahedralUpscaler.mjs => TetrahedralUpscaler.js} | 2 +- test/images/smaa/SMAAImageGenerator.js | 8 ++++++++ test/images/smaa/SMAAImageGenerator.mjs | 9 --------- .../textures/{LookupTexture3D.mjs => LookupTexture3D.js} | 5 ++--- test/images/textures/NoiseTexture.js | 8 ++++++++ test/images/textures/NoiseTexture.mjs | 9 --------- test/loaders/LUT3dlLoader.js | 8 ++++++++ test/loaders/LUT3dlLoader.mjs | 9 --------- test/loaders/LUTCubeLoader.js | 8 ++++++++ test/loaders/LUTCubeLoader.mjs | 9 --------- test/loaders/SMAAImageLoader.js | 8 ++++++++ test/loaders/SMAAImageLoader.mjs | 9 --------- test/materials/AdaptiveLuminanceMaterial.js | 8 ++++++++ test/materials/AdaptiveLuminanceMaterial.mjs | 9 --------- test/materials/BokehMaterial.js | 8 ++++++++ test/materials/BokehMaterial.mjs | 9 --------- test/materials/BoxBlurMaterial.js | 8 ++++++++ test/materials/BoxBlurMaterial.mjs | 9 --------- test/materials/CircleOfConfusionMaterial.js | 8 ++++++++ test/materials/CircleOfConfusionMaterial.mjs | 9 --------- test/materials/CopyMaterial.js | 8 ++++++++ test/materials/CopyMaterial.mjs | 9 --------- test/materials/DepthComparisonMaterial.js | 8 ++++++++ test/materials/DepthComparisonMaterial.mjs | 9 --------- test/materials/DepthCopyMaterial.js | 8 ++++++++ test/materials/DepthCopyMaterial.mjs | 9 --------- test/materials/DepthDownsamplingMaterial.js | 8 ++++++++ test/materials/DepthDownsamplingMaterial.mjs | 9 --------- test/materials/DepthMaskMaterial.js | 8 ++++++++ test/materials/DepthMaskMaterial.mjs | 9 --------- test/materials/DownsamplingMaterial.js | 8 ++++++++ test/materials/DownsamplingMaterial.mjs | 9 --------- test/materials/EdgeDetectionMaterial.js | 8 ++++++++ test/materials/EdgeDetectionMaterial.mjs | 9 --------- test/materials/EffectMaterial.js | 8 ++++++++ test/materials/EffectMaterial.mjs | 9 --------- test/materials/GaussianBlurMaterial.js | 8 ++++++++ test/materials/GaussianBlurMaterial.mjs | 9 --------- test/materials/GodRaysMaterial.js | 8 ++++++++ test/materials/GodRaysMaterial.mjs | 9 --------- test/materials/KawaseBlurMaterial.js | 8 ++++++++ test/materials/KawaseBlurMaterial.mjs | 9 --------- test/materials/LuminanceMaterial.js | 8 ++++++++ test/materials/LuminanceMaterial.mjs | 9 --------- test/materials/MaskMaterial.js | 8 ++++++++ test/materials/MaskMaterial.mjs | 9 --------- test/materials/OutlineMaterial.js | 8 ++++++++ test/materials/OutlineMaterial.mjs | 9 --------- test/materials/SMAAWeightsMaterial.js | 8 ++++++++ test/materials/SMAAWeightsMaterial.mjs | 9 --------- test/materials/SSAOMaterial.js | 8 ++++++++ test/materials/SSAOMaterial.mjs | 9 --------- test/materials/TiltShiftBlurMaterial.js | 8 ++++++++ test/materials/TiltShiftBlurMaterial.mjs | 9 --------- test/materials/UpsamplingMaterial.js | 8 ++++++++ test/materials/UpsamplingMaterial.mjs | 9 --------- ...daptiveLuminancePass.mjs => AdaptiveLuminancePass.js} | 2 +- test/passes/{BoxBlurPass.mjs => BoxBlurPass.js} | 2 +- test/passes/{ClearMaskPass.mjs => ClearMaskPass.js} | 2 +- test/passes/{ClearPass.mjs => ClearPass.js} | 2 +- test/passes/{CopyPass.mjs => CopyPass.js} | 2 +- test/passes/{DepthCopyPass.mjs => DepthCopyPass.js} | 2 +- ...epthDownsamplingPass.mjs => DepthDownsamplingPass.js} | 2 +- test/passes/{DepthPass.mjs => DepthPass.js} | 2 +- .../passes/{DepthPickingPass.mjs => DepthPickingPass.js} | 2 +- test/passes/{EffectPass.mjs => EffectPass.js} | 2 +- .../passes/{GaussianBlurPass.mjs => GaussianBlurPass.js} | 2 +- test/passes/{KawaseBlurPass.mjs => KawaseBlurPass.js} | 2 +- test/passes/{LambdaPass.mjs => LambdaPass.js} | 2 +- test/passes/{LuminancePass.mjs => LuminancePass.js} | 2 +- test/passes/{MaskPass.mjs => MaskPass.js} | 2 +- test/passes/{MipmapBlurPass.mjs => MipmapBlurPass.js} | 2 +- test/passes/{NormalPass.mjs => NormalPass.js} | 2 +- test/passes/{Pass.mjs => Pass.js} | 2 +- test/passes/{RenderPass.mjs => RenderPass.js} | 2 +- test/passes/{ShaderPass.mjs => ShaderPass.js} | 2 +- .../{TiltShiftBlurPass.mjs => TiltShiftBlurPass.js} | 2 +- 118 files changed, 287 insertions(+), 316 deletions(-) rename test/core/{EffectComposer.mjs => EffectComposer.js} (72%) rename test/core/{GaussKernel.mjs => GaussKernel.js} (64%) rename test/core/{OverrideMaterialManager.mjs => OverrideMaterialManager.js} (87%) rename test/core/{Resolution.mjs => Resolution.js} (96%) rename test/core/{Selection.mjs => Selection.js} (64%) rename test/core/{Timer.mjs => Timer.js} (94%) rename test/effects/{BloomEffect.mjs => BloomEffect.js} (72%) rename test/effects/{BokehEffect.mjs => BokehEffect.js} (72%) rename test/effects/{BrightnessContrastEffect.mjs => BrightnessContrastEffect.js} (70%) rename test/effects/{ChromaticAberrationEffect.mjs => ChromaticAberrationEffect.js} (69%) rename test/effects/{ColorAverageEffect.mjs => ColorAverageEffect.js} (71%) rename test/effects/{ColorDepthEffect.mjs => ColorDepthEffect.js} (71%) rename test/effects/{DepthEffect.mjs => DepthEffect.js} (72%) rename test/effects/{DepthOfFieldEffect.mjs => DepthOfFieldEffect.js} (71%) rename test/effects/{DotScreenEffect.mjs => DotScreenEffect.js} (71%) rename test/effects/{Effect.mjs => Effect.js} (75%) rename test/effects/{FXAAEffect.mjs => FXAAEffect.js} (72%) rename test/effects/{GammaCorrectionEffect.mjs => GammaCorrectionEffect.js} (70%) rename test/effects/{GlitchEffect.mjs => GlitchEffect.js} (72%) rename test/effects/{GodRaysEffect.mjs => GodRaysEffect.js} (77%) rename test/effects/{GridEffect.mjs => GridEffect.js} (72%) rename test/effects/{HueSaturationEffect.mjs => HueSaturationEffect.js} (70%) rename test/effects/{LUT1DEffect.mjs => LUT1DEffect.js} (77%) rename test/effects/{LUT3DEffect.mjs => LUT3DEffect.js} (77%) rename test/effects/{NoiseEffect.mjs => NoiseEffect.js} (72%) rename test/effects/{OutlineEffect.mjs => OutlineEffect.js} (73%) rename test/effects/{PixelationEffect.mjs => PixelationEffect.js} (71%) rename test/effects/{RealisticBokehEffect.mjs => RealisticBokehEffect.js} (70%) rename test/effects/{SMAAEffect.mjs => SMAAEffect.js} (72%) rename test/effects/{SSAOEffect.mjs => SSAOEffect.js} (73%) rename test/effects/{ScanlineEffect.mjs => ScanlineEffect.js} (72%) rename test/effects/{SelectiveBloomEffect.mjs => SelectiveBloomEffect.js} (76%) rename test/effects/{SepiaEffect.mjs => SepiaEffect.js} (72%) rename test/effects/{ShockWaveEffect.mjs => ShockWaveEffect.js} (72%) rename test/effects/{TextureEffect.mjs => TextureEffect.js} (72%) rename test/effects/{TiltShiftEffect.mjs => TiltShiftEffect.js} (71%) rename test/effects/{ToneMappingEffect.mjs => ToneMappingEffect.js} (71%) rename test/effects/{VignetteEffect.mjs => VignetteEffect.js} (72%) rename test/effects/blending/{BlendMode.mjs => BlendMode.js} (78%) create mode 100644 test/images/RawImageData.js delete mode 100644 test/images/RawImageData.mjs rename test/images/lut/{TetrahedralUpscaler.mjs => TetrahedralUpscaler.js} (97%) create mode 100644 test/images/smaa/SMAAImageGenerator.js delete mode 100644 test/images/smaa/SMAAImageGenerator.mjs rename test/images/textures/{LookupTexture3D.mjs => LookupTexture3D.js} (76%) create mode 100644 test/images/textures/NoiseTexture.js delete mode 100644 test/images/textures/NoiseTexture.mjs create mode 100644 test/loaders/LUT3dlLoader.js delete mode 100644 test/loaders/LUT3dlLoader.mjs create mode 100644 test/loaders/LUTCubeLoader.js delete mode 100644 test/loaders/LUTCubeLoader.mjs create mode 100644 test/loaders/SMAAImageLoader.js delete mode 100644 test/loaders/SMAAImageLoader.mjs create mode 100644 test/materials/AdaptiveLuminanceMaterial.js delete mode 100644 test/materials/AdaptiveLuminanceMaterial.mjs create mode 100644 test/materials/BokehMaterial.js delete mode 100644 test/materials/BokehMaterial.mjs create mode 100644 test/materials/BoxBlurMaterial.js delete mode 100644 test/materials/BoxBlurMaterial.mjs create mode 100644 test/materials/CircleOfConfusionMaterial.js delete mode 100644 test/materials/CircleOfConfusionMaterial.mjs create mode 100644 test/materials/CopyMaterial.js delete mode 100644 test/materials/CopyMaterial.mjs create mode 100644 test/materials/DepthComparisonMaterial.js delete mode 100644 test/materials/DepthComparisonMaterial.mjs create mode 100644 test/materials/DepthCopyMaterial.js delete mode 100644 test/materials/DepthCopyMaterial.mjs create mode 100644 test/materials/DepthDownsamplingMaterial.js delete mode 100644 test/materials/DepthDownsamplingMaterial.mjs create mode 100644 test/materials/DepthMaskMaterial.js delete mode 100644 test/materials/DepthMaskMaterial.mjs create mode 100644 test/materials/DownsamplingMaterial.js delete mode 100644 test/materials/DownsamplingMaterial.mjs create mode 100644 test/materials/EdgeDetectionMaterial.js delete mode 100644 test/materials/EdgeDetectionMaterial.mjs create mode 100644 test/materials/EffectMaterial.js delete mode 100644 test/materials/EffectMaterial.mjs create mode 100644 test/materials/GaussianBlurMaterial.js delete mode 100644 test/materials/GaussianBlurMaterial.mjs create mode 100644 test/materials/GodRaysMaterial.js delete mode 100644 test/materials/GodRaysMaterial.mjs create mode 100644 test/materials/KawaseBlurMaterial.js delete mode 100644 test/materials/KawaseBlurMaterial.mjs create mode 100644 test/materials/LuminanceMaterial.js delete mode 100644 test/materials/LuminanceMaterial.mjs create mode 100644 test/materials/MaskMaterial.js delete mode 100644 test/materials/MaskMaterial.mjs create mode 100644 test/materials/OutlineMaterial.js delete mode 100644 test/materials/OutlineMaterial.mjs create mode 100644 test/materials/SMAAWeightsMaterial.js delete mode 100644 test/materials/SMAAWeightsMaterial.mjs create mode 100644 test/materials/SSAOMaterial.js delete mode 100644 test/materials/SSAOMaterial.mjs create mode 100644 test/materials/TiltShiftBlurMaterial.js delete mode 100644 test/materials/TiltShiftBlurMaterial.mjs create mode 100644 test/materials/UpsamplingMaterial.js delete mode 100644 test/materials/UpsamplingMaterial.mjs rename test/passes/{AdaptiveLuminancePass.mjs => AdaptiveLuminancePass.js} (70%) rename test/passes/{BoxBlurPass.mjs => BoxBlurPass.js} (72%) rename test/passes/{ClearMaskPass.mjs => ClearMaskPass.js} (72%) rename test/passes/{ClearPass.mjs => ClearPass.js} (73%) rename test/passes/{CopyPass.mjs => CopyPass.js} (73%) rename test/passes/{DepthCopyPass.mjs => DepthCopyPass.js} (72%) rename test/passes/{DepthDownsamplingPass.mjs => DepthDownsamplingPass.js} (70%) rename test/passes/{DepthPass.mjs => DepthPass.js} (73%) rename test/passes/{DepthPickingPass.mjs => DepthPickingPass.js} (71%) rename test/passes/{EffectPass.mjs => EffectPass.js} (79%) rename test/passes/{GaussianBlurPass.mjs => GaussianBlurPass.js} (71%) rename test/passes/{KawaseBlurPass.mjs => KawaseBlurPass.js} (72%) rename test/passes/{LambdaPass.mjs => LambdaPass.js} (73%) rename test/passes/{LuminancePass.mjs => LuminancePass.js} (72%) rename test/passes/{MaskPass.mjs => MaskPass.js} (73%) rename test/passes/{MipmapBlurPass.mjs => MipmapBlurPass.js} (72%) rename test/passes/{NormalPass.mjs => NormalPass.js} (72%) rename test/passes/{Pass.mjs => Pass.js} (74%) rename test/passes/{RenderPass.mjs => RenderPass.js} (72%) rename test/passes/{ShaderPass.mjs => ShaderPass.js} (73%) rename test/passes/{TiltShiftBlurPass.mjs => TiltShiftBlurPass.js} (71%) diff --git a/test/core/EffectComposer.mjs b/test/core/EffectComposer.js similarity index 72% rename from test/core/EffectComposer.mjs rename to test/core/EffectComposer.js index 5cf8e9e94..4c2c06bcb 100644 --- a/test/core/EffectComposer.mjs +++ b/test/core/EffectComposer.js @@ -1,5 +1,5 @@ import test from "ava"; -import { EffectComposer } from "postprocessing/module"; +import { EffectComposer } from "postprocessing"; test("can be instantiated and disposed", t => { diff --git a/test/core/GaussKernel.mjs b/test/core/GaussKernel.js similarity index 64% rename from test/core/GaussKernel.mjs rename to test/core/GaussKernel.js index 39f3ce040..9a96574c0 100644 --- a/test/core/GaussKernel.mjs +++ b/test/core/GaussKernel.js @@ -1,5 +1,5 @@ import test from "ava"; -import { GaussKernel } from "postprocessing/module"; +import { GaussKernel } from "postprocessing"; test("can be instantiated", t => { diff --git a/test/core/OverrideMaterialManager.mjs b/test/core/OverrideMaterialManager.js similarity index 87% rename from test/core/OverrideMaterialManager.mjs rename to test/core/OverrideMaterialManager.js index 815c134a8..14dd8dedd 100644 --- a/test/core/OverrideMaterialManager.mjs +++ b/test/core/OverrideMaterialManager.js @@ -1,5 +1,5 @@ import test from "ava"; -import { OverrideMaterialManager } from "postprocessing/module"; +import { OverrideMaterialManager } from "postprocessing"; test("can be instantiated and disposed", t => { diff --git a/test/core/Resolution.mjs b/test/core/Resolution.js similarity index 96% rename from test/core/Resolution.mjs rename to test/core/Resolution.js index 9845cf55c..ae105ca9a 100644 --- a/test/core/Resolution.mjs +++ b/test/core/Resolution.js @@ -1,5 +1,5 @@ import test from "ava"; -import { Resolution } from "postprocessing/module"; +import { Resolution } from "postprocessing"; test("can be instantiated", t => { diff --git a/test/core/Selection.mjs b/test/core/Selection.js similarity index 64% rename from test/core/Selection.mjs rename to test/core/Selection.js index b5fb85efd..2b99a6aed 100644 --- a/test/core/Selection.mjs +++ b/test/core/Selection.js @@ -1,5 +1,5 @@ import test from "ava"; -import { Selection } from "postprocessing/module"; +import { Selection } from "postprocessing"; test("can be instantiated", t => { diff --git a/test/core/Timer.mjs b/test/core/Timer.js similarity index 94% rename from test/core/Timer.mjs rename to test/core/Timer.js index 8f904847e..857d6a899 100644 --- a/test/core/Timer.mjs +++ b/test/core/Timer.js @@ -1,5 +1,5 @@ import test from "ava"; -import { Timer } from "postprocessing/module"; +import { Timer } from "postprocessing"; const SECONDS_TO_MILLISECONDS = 1e3; diff --git a/test/effects/BloomEffect.mjs b/test/effects/BloomEffect.js similarity index 72% rename from test/effects/BloomEffect.mjs rename to test/effects/BloomEffect.js index 613a45ad4..014417190 100644 --- a/test/effects/BloomEffect.mjs +++ b/test/effects/BloomEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { BloomEffect } from "postprocessing/module"; +import { BloomEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/BokehEffect.mjs b/test/effects/BokehEffect.js similarity index 72% rename from test/effects/BokehEffect.mjs rename to test/effects/BokehEffect.js index 52fe71d66..a78700424 100644 --- a/test/effects/BokehEffect.mjs +++ b/test/effects/BokehEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { BokehEffect } from "postprocessing/module"; +import { BokehEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/BrightnessContrastEffect.mjs b/test/effects/BrightnessContrastEffect.js similarity index 70% rename from test/effects/BrightnessContrastEffect.mjs rename to test/effects/BrightnessContrastEffect.js index 9db5ef0b2..999f0bef4 100644 --- a/test/effects/BrightnessContrastEffect.mjs +++ b/test/effects/BrightnessContrastEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { BrightnessContrastEffect } from "postprocessing/module"; +import { BrightnessContrastEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/ChromaticAberrationEffect.mjs b/test/effects/ChromaticAberrationEffect.js similarity index 69% rename from test/effects/ChromaticAberrationEffect.mjs rename to test/effects/ChromaticAberrationEffect.js index 496ca4dc9..65edc880c 100644 --- a/test/effects/ChromaticAberrationEffect.mjs +++ b/test/effects/ChromaticAberrationEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { ChromaticAberrationEffect } from "postprocessing/module"; +import { ChromaticAberrationEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/ColorAverageEffect.mjs b/test/effects/ColorAverageEffect.js similarity index 71% rename from test/effects/ColorAverageEffect.mjs rename to test/effects/ColorAverageEffect.js index 60e7072d7..c611c6cfe 100644 --- a/test/effects/ColorAverageEffect.mjs +++ b/test/effects/ColorAverageEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { ColorAverageEffect } from "postprocessing/module"; +import { ColorAverageEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/ColorDepthEffect.mjs b/test/effects/ColorDepthEffect.js similarity index 71% rename from test/effects/ColorDepthEffect.mjs rename to test/effects/ColorDepthEffect.js index c8008c09e..1204dc586 100644 --- a/test/effects/ColorDepthEffect.mjs +++ b/test/effects/ColorDepthEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { ColorDepthEffect } from "postprocessing/module"; +import { ColorDepthEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/DepthEffect.mjs b/test/effects/DepthEffect.js similarity index 72% rename from test/effects/DepthEffect.mjs rename to test/effects/DepthEffect.js index ee4ab16bb..34e2bb8ff 100644 --- a/test/effects/DepthEffect.mjs +++ b/test/effects/DepthEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { DepthEffect } from "postprocessing/module"; +import { DepthEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/DepthOfFieldEffect.mjs b/test/effects/DepthOfFieldEffect.js similarity index 71% rename from test/effects/DepthOfFieldEffect.mjs rename to test/effects/DepthOfFieldEffect.js index 27ab255ce..1aa73ce7b 100644 --- a/test/effects/DepthOfFieldEffect.mjs +++ b/test/effects/DepthOfFieldEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { DepthOfFieldEffect } from "postprocessing/module"; +import { DepthOfFieldEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/DotScreenEffect.mjs b/test/effects/DotScreenEffect.js similarity index 71% rename from test/effects/DotScreenEffect.mjs rename to test/effects/DotScreenEffect.js index 454e8c291..d1a824e6a 100644 --- a/test/effects/DotScreenEffect.mjs +++ b/test/effects/DotScreenEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { DotScreenEffect } from "postprocessing/module"; +import { DotScreenEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/Effect.mjs b/test/effects/Effect.js similarity index 75% rename from test/effects/Effect.mjs rename to test/effects/Effect.js index ae0b5f8ea..65ae5cd38 100644 --- a/test/effects/Effect.mjs +++ b/test/effects/Effect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { Effect } from "postprocessing/module"; +import { Effect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/FXAAEffect.mjs b/test/effects/FXAAEffect.js similarity index 72% rename from test/effects/FXAAEffect.mjs rename to test/effects/FXAAEffect.js index c255c15e6..c961906ac 100644 --- a/test/effects/FXAAEffect.mjs +++ b/test/effects/FXAAEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { FXAAEffect } from "postprocessing/module"; +import { FXAAEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/GammaCorrectionEffect.mjs b/test/effects/GammaCorrectionEffect.js similarity index 70% rename from test/effects/GammaCorrectionEffect.mjs rename to test/effects/GammaCorrectionEffect.js index 55fd2029f..abee5eadc 100644 --- a/test/effects/GammaCorrectionEffect.mjs +++ b/test/effects/GammaCorrectionEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { GammaCorrectionEffect } from "postprocessing/module"; +import { GammaCorrectionEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/GlitchEffect.mjs b/test/effects/GlitchEffect.js similarity index 72% rename from test/effects/GlitchEffect.mjs rename to test/effects/GlitchEffect.js index da29f2d92..e7c93e3dc 100644 --- a/test/effects/GlitchEffect.mjs +++ b/test/effects/GlitchEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { GlitchEffect } from "postprocessing/module"; +import { GlitchEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/GodRaysEffect.mjs b/test/effects/GodRaysEffect.js similarity index 77% rename from test/effects/GodRaysEffect.mjs rename to test/effects/GodRaysEffect.js index 7b66e345b..4548f194e 100644 --- a/test/effects/GodRaysEffect.mjs +++ b/test/effects/GodRaysEffect.js @@ -1,6 +1,6 @@ import test from "ava"; import { Mesh } from "three"; -import { GodRaysEffect } from "postprocessing/module"; +import { GodRaysEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/GridEffect.mjs b/test/effects/GridEffect.js similarity index 72% rename from test/effects/GridEffect.mjs rename to test/effects/GridEffect.js index a85d15cf8..481613bea 100644 --- a/test/effects/GridEffect.mjs +++ b/test/effects/GridEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { GridEffect } from "postprocessing/module"; +import { GridEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/HueSaturationEffect.mjs b/test/effects/HueSaturationEffect.js similarity index 70% rename from test/effects/HueSaturationEffect.mjs rename to test/effects/HueSaturationEffect.js index 4159be0d3..cb37fb98f 100644 --- a/test/effects/HueSaturationEffect.mjs +++ b/test/effects/HueSaturationEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { HueSaturationEffect } from "postprocessing/module"; +import { HueSaturationEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/LUT1DEffect.mjs b/test/effects/LUT1DEffect.js similarity index 77% rename from test/effects/LUT1DEffect.mjs rename to test/effects/LUT1DEffect.js index 7a7e12157..2de8b8663 100644 --- a/test/effects/LUT1DEffect.mjs +++ b/test/effects/LUT1DEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { LUT1DEffect } from "postprocessing/module"; +import { LUT1DEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/LUT3DEffect.mjs b/test/effects/LUT3DEffect.js similarity index 77% rename from test/effects/LUT3DEffect.mjs rename to test/effects/LUT3DEffect.js index 208cbe2de..44a61ac78 100644 --- a/test/effects/LUT3DEffect.mjs +++ b/test/effects/LUT3DEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { LUT3DEffect } from "postprocessing/module"; +import { LUT3DEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/NoiseEffect.mjs b/test/effects/NoiseEffect.js similarity index 72% rename from test/effects/NoiseEffect.mjs rename to test/effects/NoiseEffect.js index d443e8e9b..1c716efff 100644 --- a/test/effects/NoiseEffect.mjs +++ b/test/effects/NoiseEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { NoiseEffect } from "postprocessing/module"; +import { NoiseEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/OutlineEffect.mjs b/test/effects/OutlineEffect.js similarity index 73% rename from test/effects/OutlineEffect.mjs rename to test/effects/OutlineEffect.js index e7edeed7f..1e7033fcb 100644 --- a/test/effects/OutlineEffect.mjs +++ b/test/effects/OutlineEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { OutlineEffect } from "postprocessing/module"; +import { OutlineEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/PixelationEffect.mjs b/test/effects/PixelationEffect.js similarity index 71% rename from test/effects/PixelationEffect.mjs rename to test/effects/PixelationEffect.js index 0c332c2f7..ad0783c48 100644 --- a/test/effects/PixelationEffect.mjs +++ b/test/effects/PixelationEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { PixelationEffect } from "postprocessing/module"; +import { PixelationEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/RealisticBokehEffect.mjs b/test/effects/RealisticBokehEffect.js similarity index 70% rename from test/effects/RealisticBokehEffect.mjs rename to test/effects/RealisticBokehEffect.js index 8a8d393c4..64568d85d 100644 --- a/test/effects/RealisticBokehEffect.mjs +++ b/test/effects/RealisticBokehEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { RealisticBokehEffect } from "postprocessing/module"; +import { RealisticBokehEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/SMAAEffect.mjs b/test/effects/SMAAEffect.js similarity index 72% rename from test/effects/SMAAEffect.mjs rename to test/effects/SMAAEffect.js index f6b43d2f2..fac6dc25f 100644 --- a/test/effects/SMAAEffect.mjs +++ b/test/effects/SMAAEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { SMAAEffect } from "postprocessing/module"; +import { SMAAEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/SSAOEffect.mjs b/test/effects/SSAOEffect.js similarity index 73% rename from test/effects/SSAOEffect.mjs rename to test/effects/SSAOEffect.js index 48c87737c..5009fbbb2 100644 --- a/test/effects/SSAOEffect.mjs +++ b/test/effects/SSAOEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { SSAOEffect } from "postprocessing/module"; +import { SSAOEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/ScanlineEffect.mjs b/test/effects/ScanlineEffect.js similarity index 72% rename from test/effects/ScanlineEffect.mjs rename to test/effects/ScanlineEffect.js index 677e798f1..100775f0f 100644 --- a/test/effects/ScanlineEffect.mjs +++ b/test/effects/ScanlineEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { ScanlineEffect } from "postprocessing/module"; +import { ScanlineEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/SelectiveBloomEffect.mjs b/test/effects/SelectiveBloomEffect.js similarity index 76% rename from test/effects/SelectiveBloomEffect.mjs rename to test/effects/SelectiveBloomEffect.js index 787870ea9..29edc1a55 100644 --- a/test/effects/SelectiveBloomEffect.mjs +++ b/test/effects/SelectiveBloomEffect.js @@ -1,6 +1,6 @@ import test from "ava"; import { Scene } from "three"; -import { SelectiveBloomEffect } from "postprocessing/module"; +import { SelectiveBloomEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/SepiaEffect.mjs b/test/effects/SepiaEffect.js similarity index 72% rename from test/effects/SepiaEffect.mjs rename to test/effects/SepiaEffect.js index 8015774c2..0f13f5b83 100644 --- a/test/effects/SepiaEffect.mjs +++ b/test/effects/SepiaEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { SepiaEffect } from "postprocessing/module"; +import { SepiaEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/ShockWaveEffect.mjs b/test/effects/ShockWaveEffect.js similarity index 72% rename from test/effects/ShockWaveEffect.mjs rename to test/effects/ShockWaveEffect.js index a2d4c155e..e0840dc9e 100644 --- a/test/effects/ShockWaveEffect.mjs +++ b/test/effects/ShockWaveEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { ShockWaveEffect } from "postprocessing/module"; +import { ShockWaveEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/TextureEffect.mjs b/test/effects/TextureEffect.js similarity index 72% rename from test/effects/TextureEffect.mjs rename to test/effects/TextureEffect.js index 3f10b2559..a57e2f2ae 100644 --- a/test/effects/TextureEffect.mjs +++ b/test/effects/TextureEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { TextureEffect } from "postprocessing/module"; +import { TextureEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/TiltShiftEffect.mjs b/test/effects/TiltShiftEffect.js similarity index 71% rename from test/effects/TiltShiftEffect.mjs rename to test/effects/TiltShiftEffect.js index 2e3ea3466..12ce62e34 100644 --- a/test/effects/TiltShiftEffect.mjs +++ b/test/effects/TiltShiftEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { TiltShiftEffect } from "postprocessing/module"; +import { TiltShiftEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/ToneMappingEffect.mjs b/test/effects/ToneMappingEffect.js similarity index 71% rename from test/effects/ToneMappingEffect.mjs rename to test/effects/ToneMappingEffect.js index af06f3452..8bc753a06 100644 --- a/test/effects/ToneMappingEffect.mjs +++ b/test/effects/ToneMappingEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { ToneMappingEffect } from "postprocessing/module"; +import { ToneMappingEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/VignetteEffect.mjs b/test/effects/VignetteEffect.js similarity index 72% rename from test/effects/VignetteEffect.mjs rename to test/effects/VignetteEffect.js index f6ffa0fca..3064f4086 100644 --- a/test/effects/VignetteEffect.mjs +++ b/test/effects/VignetteEffect.js @@ -1,5 +1,5 @@ import test from "ava"; -import { VignetteEffect } from "postprocessing/module"; +import { VignetteEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/effects/blending/BlendMode.mjs b/test/effects/blending/BlendMode.js similarity index 78% rename from test/effects/blending/BlendMode.mjs rename to test/effects/blending/BlendMode.js index 50f6e09c2..00576149f 100644 --- a/test/effects/blending/BlendMode.mjs +++ b/test/effects/blending/BlendMode.js @@ -1,5 +1,5 @@ import test from "ava"; -import { BlendFunction, BlendMode } from "postprocessing/module"; +import { BlendFunction, BlendMode } from "postprocessing"; test("can be created", t => { diff --git a/test/images/RawImageData.js b/test/images/RawImageData.js new file mode 100644 index 000000000..ead2ef6b7 --- /dev/null +++ b/test/images/RawImageData.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { RawImageData } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new RawImageData()); + +}); diff --git a/test/images/RawImageData.mjs b/test/images/RawImageData.mjs deleted file mode 100644 index 5723c963a..000000000 --- a/test/images/RawImageData.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { RawImageData } from "postprocessing/module"; - -test("can be created", t => { - - const object = new RawImageData(); - t.pass(); - -}); diff --git a/test/images/lut/TetrahedralUpscaler.mjs b/test/images/lut/TetrahedralUpscaler.js similarity index 97% rename from test/images/lut/TetrahedralUpscaler.mjs rename to test/images/lut/TetrahedralUpscaler.js index 1ee9c1b3e..060124535 100644 --- a/test/images/lut/TetrahedralUpscaler.mjs +++ b/test/images/lut/TetrahedralUpscaler.js @@ -1,5 +1,5 @@ import test from "ava"; -import { LookupTexture3D, TetrahedralUpscaler } from "postprocessing/module"; +import { LookupTexture3D, TetrahedralUpscaler } from "postprocessing"; test("generates accurate upscaled data", t => { diff --git a/test/images/smaa/SMAAImageGenerator.js b/test/images/smaa/SMAAImageGenerator.js new file mode 100644 index 000000000..cc6611bf9 --- /dev/null +++ b/test/images/smaa/SMAAImageGenerator.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { SMAAImageGenerator } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new SMAAImageGenerator()); + +}); diff --git a/test/images/smaa/SMAAImageGenerator.mjs b/test/images/smaa/SMAAImageGenerator.mjs deleted file mode 100644 index 582bd10f2..000000000 --- a/test/images/smaa/SMAAImageGenerator.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { SMAAImageGenerator } from "postprocessing/module"; - -test("can be created", t => { - - const object = new SMAAImageGenerator(); - t.pass(); - -}); diff --git a/test/images/textures/LookupTexture3D.mjs b/test/images/textures/LookupTexture3D.js similarity index 76% rename from test/images/textures/LookupTexture3D.mjs rename to test/images/textures/LookupTexture3D.js index 6197bd19d..820234bea 100644 --- a/test/images/textures/LookupTexture3D.mjs +++ b/test/images/textures/LookupTexture3D.js @@ -1,10 +1,9 @@ import test from "ava"; -import { LookupTexture3D } from "postprocessing/module"; +import { LookupTexture3D } from "postprocessing"; test("can be created", t => { - const object = new LookupTexture3D(); - t.pass(); + t.truthy(new LookupTexture3D()); }); diff --git a/test/images/textures/NoiseTexture.js b/test/images/textures/NoiseTexture.js new file mode 100644 index 000000000..4b93e57da --- /dev/null +++ b/test/images/textures/NoiseTexture.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { NoiseTexture } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new NoiseTexture(1, 1)); + +}); diff --git a/test/images/textures/NoiseTexture.mjs b/test/images/textures/NoiseTexture.mjs deleted file mode 100644 index ed23f9778..000000000 --- a/test/images/textures/NoiseTexture.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { NoiseTexture } from "postprocessing/module"; - -test("can be created", t => { - - const object = new NoiseTexture(1, 1); - t.pass(); - -}); diff --git a/test/loaders/LUT3dlLoader.js b/test/loaders/LUT3dlLoader.js new file mode 100644 index 000000000..39c82ff22 --- /dev/null +++ b/test/loaders/LUT3dlLoader.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { LUT3dlLoader } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new LUT3dlLoader()); + +}); diff --git a/test/loaders/LUT3dlLoader.mjs b/test/loaders/LUT3dlLoader.mjs deleted file mode 100644 index 0f7382527..000000000 --- a/test/loaders/LUT3dlLoader.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { LUT3dlLoader } from "postprocessing/module"; - -test("can be created", t => { - - const object = new LUT3dlLoader(); - t.pass(); - -}); diff --git a/test/loaders/LUTCubeLoader.js b/test/loaders/LUTCubeLoader.js new file mode 100644 index 000000000..6316df05f --- /dev/null +++ b/test/loaders/LUTCubeLoader.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { LUTCubeLoader } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new LUTCubeLoader()); + +}); diff --git a/test/loaders/LUTCubeLoader.mjs b/test/loaders/LUTCubeLoader.mjs deleted file mode 100644 index ead5e5417..000000000 --- a/test/loaders/LUTCubeLoader.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { LUTCubeLoader } from "postprocessing/module"; - -test("can be created", t => { - - const object = new LUTCubeLoader(); - t.pass(); - -}); diff --git a/test/loaders/SMAAImageLoader.js b/test/loaders/SMAAImageLoader.js new file mode 100644 index 000000000..55d82465a --- /dev/null +++ b/test/loaders/SMAAImageLoader.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { SMAAImageLoader } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new SMAAImageLoader()); + +}); diff --git a/test/loaders/SMAAImageLoader.mjs b/test/loaders/SMAAImageLoader.mjs deleted file mode 100644 index 56ac9a3bc..000000000 --- a/test/loaders/SMAAImageLoader.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { SMAAImageLoader } from "postprocessing/module"; - -test("can be created", t => { - - const object = new SMAAImageLoader(); - t.pass(); - -}); diff --git a/test/materials/AdaptiveLuminanceMaterial.js b/test/materials/AdaptiveLuminanceMaterial.js new file mode 100644 index 000000000..292b1b975 --- /dev/null +++ b/test/materials/AdaptiveLuminanceMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { AdaptiveLuminanceMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new AdaptiveLuminanceMaterial()); + +}); diff --git a/test/materials/AdaptiveLuminanceMaterial.mjs b/test/materials/AdaptiveLuminanceMaterial.mjs deleted file mode 100644 index 6d3f99031..000000000 --- a/test/materials/AdaptiveLuminanceMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { AdaptiveLuminanceMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new AdaptiveLuminanceMaterial(); - t.pass(); - -}); diff --git a/test/materials/BokehMaterial.js b/test/materials/BokehMaterial.js new file mode 100644 index 000000000..23e38e690 --- /dev/null +++ b/test/materials/BokehMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { BokehMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new BokehMaterial()); + +}); diff --git a/test/materials/BokehMaterial.mjs b/test/materials/BokehMaterial.mjs deleted file mode 100644 index 4577bfa8a..000000000 --- a/test/materials/BokehMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { BokehMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new BokehMaterial(); - t.pass(); - -}); diff --git a/test/materials/BoxBlurMaterial.js b/test/materials/BoxBlurMaterial.js new file mode 100644 index 000000000..81a364d7b --- /dev/null +++ b/test/materials/BoxBlurMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { BoxBlurMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new BoxBlurMaterial()); + +}); diff --git a/test/materials/BoxBlurMaterial.mjs b/test/materials/BoxBlurMaterial.mjs deleted file mode 100644 index 1473972e6..000000000 --- a/test/materials/BoxBlurMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { BoxBlurMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new BoxBlurMaterial(); - t.pass(); - -}); diff --git a/test/materials/CircleOfConfusionMaterial.js b/test/materials/CircleOfConfusionMaterial.js new file mode 100644 index 000000000..12d132445 --- /dev/null +++ b/test/materials/CircleOfConfusionMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { CircleOfConfusionMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new CircleOfConfusionMaterial()); + +}); diff --git a/test/materials/CircleOfConfusionMaterial.mjs b/test/materials/CircleOfConfusionMaterial.mjs deleted file mode 100644 index de7d6dadb..000000000 --- a/test/materials/CircleOfConfusionMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { CircleOfConfusionMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new CircleOfConfusionMaterial(); - t.pass(); - -}); diff --git a/test/materials/CopyMaterial.js b/test/materials/CopyMaterial.js new file mode 100644 index 000000000..28f6623ba --- /dev/null +++ b/test/materials/CopyMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { CopyMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new CopyMaterial()); + +}); diff --git a/test/materials/CopyMaterial.mjs b/test/materials/CopyMaterial.mjs deleted file mode 100644 index 29c04fa6c..000000000 --- a/test/materials/CopyMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { CopyMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new CopyMaterial(); - t.pass(); - -}); diff --git a/test/materials/DepthComparisonMaterial.js b/test/materials/DepthComparisonMaterial.js new file mode 100644 index 000000000..2ae1b8d8e --- /dev/null +++ b/test/materials/DepthComparisonMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { DepthComparisonMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new DepthComparisonMaterial()); + +}); diff --git a/test/materials/DepthComparisonMaterial.mjs b/test/materials/DepthComparisonMaterial.mjs deleted file mode 100644 index 78c1fa991..000000000 --- a/test/materials/DepthComparisonMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { DepthComparisonMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new DepthComparisonMaterial(); - t.pass(); - -}); diff --git a/test/materials/DepthCopyMaterial.js b/test/materials/DepthCopyMaterial.js new file mode 100644 index 000000000..014c4d480 --- /dev/null +++ b/test/materials/DepthCopyMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { DepthCopyMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new DepthCopyMaterial()); + +}); diff --git a/test/materials/DepthCopyMaterial.mjs b/test/materials/DepthCopyMaterial.mjs deleted file mode 100644 index 3997f54ab..000000000 --- a/test/materials/DepthCopyMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { DepthCopyMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new DepthCopyMaterial(); - t.pass(); - -}); diff --git a/test/materials/DepthDownsamplingMaterial.js b/test/materials/DepthDownsamplingMaterial.js new file mode 100644 index 000000000..360dce0d2 --- /dev/null +++ b/test/materials/DepthDownsamplingMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { DepthDownsamplingMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new DepthDownsamplingMaterial()); + +}); diff --git a/test/materials/DepthDownsamplingMaterial.mjs b/test/materials/DepthDownsamplingMaterial.mjs deleted file mode 100644 index c02311884..000000000 --- a/test/materials/DepthDownsamplingMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { DepthDownsamplingMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new DepthDownsamplingMaterial(); - t.pass(); - -}); diff --git a/test/materials/DepthMaskMaterial.js b/test/materials/DepthMaskMaterial.js new file mode 100644 index 000000000..cb176fafe --- /dev/null +++ b/test/materials/DepthMaskMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { DepthMaskMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new DepthMaskMaterial()); + +}); diff --git a/test/materials/DepthMaskMaterial.mjs b/test/materials/DepthMaskMaterial.mjs deleted file mode 100644 index 713164234..000000000 --- a/test/materials/DepthMaskMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { DepthMaskMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new DepthMaskMaterial(); - t.pass(); - -}); diff --git a/test/materials/DownsamplingMaterial.js b/test/materials/DownsamplingMaterial.js new file mode 100644 index 000000000..7744d2d72 --- /dev/null +++ b/test/materials/DownsamplingMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { DownsamplingMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new DownsamplingMaterial()); + +}); diff --git a/test/materials/DownsamplingMaterial.mjs b/test/materials/DownsamplingMaterial.mjs deleted file mode 100644 index d96ec9a10..000000000 --- a/test/materials/DownsamplingMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { DownsamplingMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new DownsamplingMaterial(); - t.pass(); - -}); diff --git a/test/materials/EdgeDetectionMaterial.js b/test/materials/EdgeDetectionMaterial.js new file mode 100644 index 000000000..cde791f75 --- /dev/null +++ b/test/materials/EdgeDetectionMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { EdgeDetectionMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new EdgeDetectionMaterial()); + +}); diff --git a/test/materials/EdgeDetectionMaterial.mjs b/test/materials/EdgeDetectionMaterial.mjs deleted file mode 100644 index 8f97fe03f..000000000 --- a/test/materials/EdgeDetectionMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { EdgeDetectionMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new EdgeDetectionMaterial(); - t.pass(); - -}); diff --git a/test/materials/EffectMaterial.js b/test/materials/EffectMaterial.js new file mode 100644 index 000000000..ee0b08027 --- /dev/null +++ b/test/materials/EffectMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { EffectMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new EffectMaterial(new Map(), null, null)); + +}); diff --git a/test/materials/EffectMaterial.mjs b/test/materials/EffectMaterial.mjs deleted file mode 100644 index 27132de64..000000000 --- a/test/materials/EffectMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { EffectMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new EffectMaterial(new Map(), null, null); - t.pass(); - -}); diff --git a/test/materials/GaussianBlurMaterial.js b/test/materials/GaussianBlurMaterial.js new file mode 100644 index 000000000..a5b36d4ae --- /dev/null +++ b/test/materials/GaussianBlurMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { GaussianBlurMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new GaussianBlurMaterial()); + +}); diff --git a/test/materials/GaussianBlurMaterial.mjs b/test/materials/GaussianBlurMaterial.mjs deleted file mode 100644 index d246bbc32..000000000 --- a/test/materials/GaussianBlurMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { GaussianBlurMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new GaussianBlurMaterial(); - t.pass(); - -}); diff --git a/test/materials/GodRaysMaterial.js b/test/materials/GodRaysMaterial.js new file mode 100644 index 000000000..d35417c29 --- /dev/null +++ b/test/materials/GodRaysMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { GodRaysMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new GodRaysMaterial()); + +}); diff --git a/test/materials/GodRaysMaterial.mjs b/test/materials/GodRaysMaterial.mjs deleted file mode 100644 index 8efd237c1..000000000 --- a/test/materials/GodRaysMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { GodRaysMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new GodRaysMaterial(); - t.pass(); - -}); diff --git a/test/materials/KawaseBlurMaterial.js b/test/materials/KawaseBlurMaterial.js new file mode 100644 index 000000000..07c681e33 --- /dev/null +++ b/test/materials/KawaseBlurMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { KawaseBlurMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new KawaseBlurMaterial()); + +}); diff --git a/test/materials/KawaseBlurMaterial.mjs b/test/materials/KawaseBlurMaterial.mjs deleted file mode 100644 index 552a46402..000000000 --- a/test/materials/KawaseBlurMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { KawaseBlurMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new KawaseBlurMaterial(); - t.pass(); - -}); diff --git a/test/materials/LuminanceMaterial.js b/test/materials/LuminanceMaterial.js new file mode 100644 index 000000000..27280de93 --- /dev/null +++ b/test/materials/LuminanceMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { LuminanceMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new LuminanceMaterial()); + +}); diff --git a/test/materials/LuminanceMaterial.mjs b/test/materials/LuminanceMaterial.mjs deleted file mode 100644 index 9e53ebdb0..000000000 --- a/test/materials/LuminanceMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { LuminanceMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new LuminanceMaterial(); - t.pass(); - -}); diff --git a/test/materials/MaskMaterial.js b/test/materials/MaskMaterial.js new file mode 100644 index 000000000..3afe5b931 --- /dev/null +++ b/test/materials/MaskMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { MaskMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new MaskMaterial()); + +}); diff --git a/test/materials/MaskMaterial.mjs b/test/materials/MaskMaterial.mjs deleted file mode 100644 index 2553a24c7..000000000 --- a/test/materials/MaskMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { MaskMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new MaskMaterial(); - t.pass(); - -}); diff --git a/test/materials/OutlineMaterial.js b/test/materials/OutlineMaterial.js new file mode 100644 index 000000000..ad2175761 --- /dev/null +++ b/test/materials/OutlineMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { OutlineMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new OutlineMaterial()); + +}); diff --git a/test/materials/OutlineMaterial.mjs b/test/materials/OutlineMaterial.mjs deleted file mode 100644 index 2bb141e15..000000000 --- a/test/materials/OutlineMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { OutlineMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new OutlineMaterial(); - t.pass(); - -}); diff --git a/test/materials/SMAAWeightsMaterial.js b/test/materials/SMAAWeightsMaterial.js new file mode 100644 index 000000000..8e2cbcc46 --- /dev/null +++ b/test/materials/SMAAWeightsMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { SMAAWeightsMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new SMAAWeightsMaterial()); + +}); diff --git a/test/materials/SMAAWeightsMaterial.mjs b/test/materials/SMAAWeightsMaterial.mjs deleted file mode 100644 index f32b2bc70..000000000 --- a/test/materials/SMAAWeightsMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { SMAAWeightsMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new SMAAWeightsMaterial(); - t.pass(); - -}); diff --git a/test/materials/SSAOMaterial.js b/test/materials/SSAOMaterial.js new file mode 100644 index 000000000..948c2bd41 --- /dev/null +++ b/test/materials/SSAOMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { SSAOMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new SSAOMaterial()); + +}); diff --git a/test/materials/SSAOMaterial.mjs b/test/materials/SSAOMaterial.mjs deleted file mode 100644 index 3168d2477..000000000 --- a/test/materials/SSAOMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { SSAOMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new SSAOMaterial(); - t.pass(); - -}); diff --git a/test/materials/TiltShiftBlurMaterial.js b/test/materials/TiltShiftBlurMaterial.js new file mode 100644 index 000000000..27d2e8bb4 --- /dev/null +++ b/test/materials/TiltShiftBlurMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { TiltShiftBlurMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new TiltShiftBlurMaterial()); + +}); diff --git a/test/materials/TiltShiftBlurMaterial.mjs b/test/materials/TiltShiftBlurMaterial.mjs deleted file mode 100644 index c3b65c4ab..000000000 --- a/test/materials/TiltShiftBlurMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { TiltShiftBlurMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new TiltShiftBlurMaterial(); - t.pass(); - -}); diff --git a/test/materials/UpsamplingMaterial.js b/test/materials/UpsamplingMaterial.js new file mode 100644 index 000000000..07a9171d7 --- /dev/null +++ b/test/materials/UpsamplingMaterial.js @@ -0,0 +1,8 @@ +import test from "ava"; +import { UpsamplingMaterial } from "postprocessing"; + +test("can be created", t => { + + t.truthy(new UpsamplingMaterial()); + +}); diff --git a/test/materials/UpsamplingMaterial.mjs b/test/materials/UpsamplingMaterial.mjs deleted file mode 100644 index e6385a33e..000000000 --- a/test/materials/UpsamplingMaterial.mjs +++ /dev/null @@ -1,9 +0,0 @@ -import test from "ava"; -import { UpsamplingMaterial } from "postprocessing/module"; - -test("can be created", t => { - - const object = new UpsamplingMaterial(); - t.pass(); - -}); diff --git a/test/passes/AdaptiveLuminancePass.mjs b/test/passes/AdaptiveLuminancePass.js similarity index 70% rename from test/passes/AdaptiveLuminancePass.mjs rename to test/passes/AdaptiveLuminancePass.js index 9f88035f8..a23f16a23 100644 --- a/test/passes/AdaptiveLuminancePass.mjs +++ b/test/passes/AdaptiveLuminancePass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { AdaptiveLuminancePass } from "postprocessing/module"; +import { AdaptiveLuminancePass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/BoxBlurPass.mjs b/test/passes/BoxBlurPass.js similarity index 72% rename from test/passes/BoxBlurPass.mjs rename to test/passes/BoxBlurPass.js index b337b4265..7fc82ae3f 100644 --- a/test/passes/BoxBlurPass.mjs +++ b/test/passes/BoxBlurPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { BoxBlurPass } from "postprocessing/module"; +import { BoxBlurPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/ClearMaskPass.mjs b/test/passes/ClearMaskPass.js similarity index 72% rename from test/passes/ClearMaskPass.mjs rename to test/passes/ClearMaskPass.js index 45fe51f31..455fd1ba1 100644 --- a/test/passes/ClearMaskPass.mjs +++ b/test/passes/ClearMaskPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { ClearMaskPass } from "postprocessing/module"; +import { ClearMaskPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/ClearPass.mjs b/test/passes/ClearPass.js similarity index 73% rename from test/passes/ClearPass.mjs rename to test/passes/ClearPass.js index 02dc4cf0a..86ae0a7f7 100644 --- a/test/passes/ClearPass.mjs +++ b/test/passes/ClearPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { ClearPass } from "postprocessing/module"; +import { ClearPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/CopyPass.mjs b/test/passes/CopyPass.js similarity index 73% rename from test/passes/CopyPass.mjs rename to test/passes/CopyPass.js index 77ca0277e..b8af4fe38 100644 --- a/test/passes/CopyPass.mjs +++ b/test/passes/CopyPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { CopyPass } from "postprocessing/module"; +import { CopyPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/DepthCopyPass.mjs b/test/passes/DepthCopyPass.js similarity index 72% rename from test/passes/DepthCopyPass.mjs rename to test/passes/DepthCopyPass.js index f555b2590..208a0e064 100644 --- a/test/passes/DepthCopyPass.mjs +++ b/test/passes/DepthCopyPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { DepthCopyPass } from "postprocessing/module"; +import { DepthCopyPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/DepthDownsamplingPass.mjs b/test/passes/DepthDownsamplingPass.js similarity index 70% rename from test/passes/DepthDownsamplingPass.mjs rename to test/passes/DepthDownsamplingPass.js index 814b343ab..2bee26643 100644 --- a/test/passes/DepthDownsamplingPass.mjs +++ b/test/passes/DepthDownsamplingPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { DepthDownsamplingPass } from "postprocessing/module"; +import { DepthDownsamplingPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/DepthPass.mjs b/test/passes/DepthPass.js similarity index 73% rename from test/passes/DepthPass.mjs rename to test/passes/DepthPass.js index e532a9b9a..49e1e6e55 100644 --- a/test/passes/DepthPass.mjs +++ b/test/passes/DepthPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { DepthPass } from "postprocessing/module"; +import { DepthPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/DepthPickingPass.mjs b/test/passes/DepthPickingPass.js similarity index 71% rename from test/passes/DepthPickingPass.mjs rename to test/passes/DepthPickingPass.js index 81ea4b52c..78a451c90 100644 --- a/test/passes/DepthPickingPass.mjs +++ b/test/passes/DepthPickingPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { DepthPickingPass } from "postprocessing/module"; +import { DepthPickingPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/EffectPass.mjs b/test/passes/EffectPass.js similarity index 79% rename from test/passes/EffectPass.mjs rename to test/passes/EffectPass.js index bc8a9361a..e506e6e65 100644 --- a/test/passes/EffectPass.mjs +++ b/test/passes/EffectPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { EffectPass, TextureEffect } from "postprocessing/module"; +import { EffectPass, TextureEffect } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/GaussianBlurPass.mjs b/test/passes/GaussianBlurPass.js similarity index 71% rename from test/passes/GaussianBlurPass.mjs rename to test/passes/GaussianBlurPass.js index 734c35765..6a188d3f9 100644 --- a/test/passes/GaussianBlurPass.mjs +++ b/test/passes/GaussianBlurPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { GaussianBlurPass } from "postprocessing/module"; +import { GaussianBlurPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/KawaseBlurPass.mjs b/test/passes/KawaseBlurPass.js similarity index 72% rename from test/passes/KawaseBlurPass.mjs rename to test/passes/KawaseBlurPass.js index 3fb638d57..628b538fd 100644 --- a/test/passes/KawaseBlurPass.mjs +++ b/test/passes/KawaseBlurPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { KawaseBlurPass } from "postprocessing/module"; +import { KawaseBlurPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/LambdaPass.mjs b/test/passes/LambdaPass.js similarity index 73% rename from test/passes/LambdaPass.mjs rename to test/passes/LambdaPass.js index 96f00c4ac..6f1e93a93 100644 --- a/test/passes/LambdaPass.mjs +++ b/test/passes/LambdaPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { LambdaPass } from "postprocessing/module"; +import { LambdaPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/LuminancePass.mjs b/test/passes/LuminancePass.js similarity index 72% rename from test/passes/LuminancePass.mjs rename to test/passes/LuminancePass.js index c3b213517..8ca4988c6 100644 --- a/test/passes/LuminancePass.mjs +++ b/test/passes/LuminancePass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { LuminancePass } from "postprocessing/module"; +import { LuminancePass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/MaskPass.mjs b/test/passes/MaskPass.js similarity index 73% rename from test/passes/MaskPass.mjs rename to test/passes/MaskPass.js index 9e8bb241f..677b74666 100644 --- a/test/passes/MaskPass.mjs +++ b/test/passes/MaskPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { MaskPass } from "postprocessing/module"; +import { MaskPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/MipmapBlurPass.mjs b/test/passes/MipmapBlurPass.js similarity index 72% rename from test/passes/MipmapBlurPass.mjs rename to test/passes/MipmapBlurPass.js index f805aeb03..873d5c214 100644 --- a/test/passes/MipmapBlurPass.mjs +++ b/test/passes/MipmapBlurPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { MipmapBlurPass } from "postprocessing/module"; +import { MipmapBlurPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/NormalPass.mjs b/test/passes/NormalPass.js similarity index 72% rename from test/passes/NormalPass.mjs rename to test/passes/NormalPass.js index edd9cbbc4..517a82b27 100644 --- a/test/passes/NormalPass.mjs +++ b/test/passes/NormalPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { NormalPass } from "postprocessing/module"; +import { NormalPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/Pass.mjs b/test/passes/Pass.js similarity index 74% rename from test/passes/Pass.mjs rename to test/passes/Pass.js index 60486afdd..088ab1861 100644 --- a/test/passes/Pass.mjs +++ b/test/passes/Pass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { Pass } from "postprocessing/module"; +import { Pass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/RenderPass.mjs b/test/passes/RenderPass.js similarity index 72% rename from test/passes/RenderPass.mjs rename to test/passes/RenderPass.js index a17851647..bef6a4c59 100644 --- a/test/passes/RenderPass.mjs +++ b/test/passes/RenderPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { RenderPass } from "postprocessing/module"; +import { RenderPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/ShaderPass.mjs b/test/passes/ShaderPass.js similarity index 73% rename from test/passes/ShaderPass.mjs rename to test/passes/ShaderPass.js index 0fcbaa260..32e112738 100644 --- a/test/passes/ShaderPass.mjs +++ b/test/passes/ShaderPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { ShaderPass } from "postprocessing/module"; +import { ShaderPass } from "postprocessing"; test("can be created and destroyed", t => { diff --git a/test/passes/TiltShiftBlurPass.mjs b/test/passes/TiltShiftBlurPass.js similarity index 71% rename from test/passes/TiltShiftBlurPass.mjs rename to test/passes/TiltShiftBlurPass.js index cca593555..7e6c2eb30 100644 --- a/test/passes/TiltShiftBlurPass.mjs +++ b/test/passes/TiltShiftBlurPass.js @@ -1,5 +1,5 @@ import test from "ava"; -import { TiltShiftBlurPass } from "postprocessing/module"; +import { TiltShiftBlurPass } from "postprocessing"; test("can be created and destroyed", t => { From 61f9b5a2d86d4fa7d608bf9396c97c05b2349f1e Mon Sep 17 00:00:00 2001 From: "Raoul v. R" Date: Sat, 17 Jun 2023 17:33:39 +0200 Subject: [PATCH 5/7] Update pnpm-lock.yaml --- pnpm-lock.yaml | 295 ++++++++++++++++++++++++------------------------- 1 file changed, 145 insertions(+), 150 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bfcb9d62f..ae3c451ba 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,22 +7,22 @@ settings: devDependencies: '@tweakpane/core': specifier: 1.x.x - version: 1.1.8 + version: 1.1.9 '@types/three': specifier: 0.x.x version: 0.152.1 '@typescript-eslint/eslint-plugin': specifier: 5.x.x - version: 5.59.9(@typescript-eslint/parser@5.59.9)(eslint@8.42.0)(typescript@5.1.3) + version: 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.43.0)(typescript@5.1.3) '@typescript-eslint/parser': specifier: 5.x.x - version: 5.59.9(eslint@8.42.0)(typescript@5.1.3) + version: 5.59.11(eslint@8.43.0)(typescript@5.1.3) autoprefixer: specifier: 10.x.x version: 10.4.14(postcss@8.4.24) ava: specifier: 5.x.x - version: 5.3.0 + version: 5.3.1 copyfiles: specifier: 2.x.x version: 2.4.1 @@ -52,13 +52,13 @@ devDependencies: version: 1.0.0 eslint: specifier: 8.x.x - version: 8.42.0 + version: 8.43.0 eslint-config-aether: specifier: 1.x.x version: 1.5.1 eslint-watch: specifier: 8.x.x - version: 8.0.0(eslint@8.42.0) + version: 8.0.0(eslint@8.43.0) gzipper: specifier: 7.x.x version: 7.2.0 @@ -76,22 +76,22 @@ devDependencies: version: 10.1.0(postcss@8.4.24) postcss-preset-env: specifier: 8.x.x - version: 8.4.2(postcss@8.4.24) + version: 8.5.0(postcss@8.4.24) sass: specifier: 1.x.x - version: 1.63.3 + version: 1.63.4 spatial-controls: specifier: 5.x.x version: 5.0.8(three@0.153.0) stylelint: specifier: 15.x.x - version: 15.7.0 + version: 15.8.0 stylelint-config-standard-scss: specifier: 7.x.x - version: 7.0.1(postcss@8.4.24)(stylelint@15.7.0) + version: 7.0.1(postcss@8.4.24)(stylelint@15.8.0) stylelint-order: specifier: 6.x.x - version: 6.0.3(stylelint@15.7.0) + version: 6.0.3(stylelint@15.8.0) three: specifier: 0.x.x version: 0.153.0 @@ -106,7 +106,7 @@ devDependencies: version: 2.5.3 tweakpane: specifier: 3.x.x - version: 3.1.9 + version: 3.1.10 typescript: specifier: 5.x.x version: 5.1.3 @@ -161,8 +161,8 @@ packages: '@csstools/css-tokenizer': 2.1.1 dev: true - /@csstools/css-color-parser@1.2.0(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1): - resolution: {integrity: sha512-kt9jhqyL/Ig/Tsf1cY+iygxs2nu3/D532048G9BSeg9YjlpZxbor6I+nvgMNB1A1ppL+i15Mb/yyDHYMQmgBtQ==} + /@csstools/css-color-parser@1.2.1(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1): + resolution: {integrity: sha512-NcmaoJIEycIH0HnzZRrwRcBljPh1AWcXl4CNL8MAD3+Zy8XyIpdTtTMaY/phnLHHIYkyjaoSTdxAecss6+PCcg==} engines: {node: ^14 || ^16 || >=18} peerDependencies: '@csstools/css-parser-algorithms': ^2.1.1 @@ -216,7 +216,7 @@ packages: peerDependencies: postcss: ^8.4 dependencies: - '@csstools/css-color-parser': 1.2.0(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) + '@csstools/css-color-parser': 1.2.1(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) '@csstools/css-parser-algorithms': 2.2.0(@csstools/css-tokenizer@2.1.1) '@csstools/css-tokenizer': 2.1.1 '@csstools/postcss-progressive-custom-properties': 2.3.0(postcss@8.4.24) @@ -229,7 +229,7 @@ packages: peerDependencies: postcss: ^8.4 dependencies: - '@csstools/css-color-parser': 1.2.0(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) + '@csstools/css-color-parser': 1.2.1(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) '@csstools/css-parser-algorithms': 2.2.0(@csstools/css-tokenizer@2.1.1) '@csstools/css-tokenizer': 2.1.1 '@csstools/postcss-progressive-custom-properties': 2.3.0(postcss@8.4.24) @@ -252,7 +252,7 @@ packages: peerDependencies: postcss: ^8.4 dependencies: - '@csstools/css-color-parser': 1.2.0(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) + '@csstools/css-color-parser': 1.2.1(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) '@csstools/css-parser-algorithms': 2.2.0(@csstools/css-tokenizer@2.1.1) '@csstools/css-tokenizer': 2.1.1 '@csstools/postcss-progressive-custom-properties': 2.3.0(postcss@8.4.24) @@ -265,7 +265,7 @@ packages: peerDependencies: postcss: ^8.4 dependencies: - '@csstools/css-color-parser': 1.2.0(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) + '@csstools/css-color-parser': 1.2.1(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) '@csstools/css-parser-algorithms': 2.2.0(@csstools/css-tokenizer@2.1.1) '@csstools/css-tokenizer': 2.1.1 postcss: 8.4.24 @@ -373,7 +373,7 @@ packages: peerDependencies: postcss: ^8.4 dependencies: - '@csstools/css-color-parser': 1.2.0(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) + '@csstools/css-color-parser': 1.2.1(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) '@csstools/css-parser-algorithms': 2.2.0(@csstools/css-tokenizer@2.1.1) '@csstools/css-tokenizer': 2.1.1 '@csstools/postcss-progressive-custom-properties': 2.3.0(postcss@8.4.24) @@ -390,13 +390,13 @@ packages: postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-relative-color-syntax@1.0.1(postcss@8.4.24): - resolution: {integrity: sha512-IskxdQqAkx/pyyOEW3Lhn3nvOu5zlaZ8wQljFl5zc3ABl+gEFf2G42yWK3+wX+J0F4jm7OikOigXo9fAISFEmg==} + /@csstools/postcss-relative-color-syntax@1.0.2(postcss@8.4.24): + resolution: {integrity: sha512-juCoVInkgH2TZPfOhyx6tIal7jW37L/0Tt+Vcl1LoxqQA9sxcg3JWYZ98pl1BonDnki6s/M7nXzFQHWsWMeHgw==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 dependencies: - '@csstools/css-color-parser': 1.2.0(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) + '@csstools/css-color-parser': 1.2.1(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) '@csstools/css-parser-algorithms': 2.2.0(@csstools/css-tokenizer@2.1.1) '@csstools/css-tokenizer': 2.1.1 '@csstools/postcss-progressive-custom-properties': 2.3.0(postcss@8.4.24) @@ -664,13 +664,13 @@ packages: dev: true optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.42.0): + /@eslint-community/eslint-utils@4.4.0(eslint@8.43.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.42.0 + eslint: 8.43.0 eslint-visitor-keys: 3.4.1 dev: true @@ -696,8 +696,8 @@ packages: - supports-color dev: true - /@eslint/js@8.42.0: - resolution: {integrity: sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw==} + /@eslint/js@8.43.0: + resolution: {integrity: sha512-s2UHCoiXfxMvmfzqoN+vrQ84ahUSYde9qNO1MdxmoEhyHWsfmwOpFlwYV+ePJEVc7gFnATGUi376WowX1N7tFg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true @@ -770,8 +770,8 @@ packages: engines: {node: '>=10.13.0'} dev: true - /@tweakpane/core@1.1.8: - resolution: {integrity: sha512-psvBf6Cbm3YSZOTmDFWkcGzHYMnw7gVZM3jw+TfbzErIC+sMXPQb85h4ayW04w2u7AGg8jD0gHXSCg5wd+rafg==} + /@tweakpane/core@1.1.9: + resolution: {integrity: sha512-9tq+KAhaqPiOgsFyLPAz1IMXkVfhRqxGzAgy1ps3As6o3W7XjnU7sev6OlD/Z+Pzw8uZVMukkSHf2e0uCU6u0A==} dev: true /@tweenjs/tween.js@18.6.4: @@ -790,8 +790,8 @@ packages: resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} dev: true - /@types/node@20.3.0: - resolution: {integrity: sha512-cumHmIAf6On83X7yP+LrsEyUOf/YlociZelmpRYaGFydoaPdxdt80MAbu6vWerQT2COCp2nPvHdsbD7tHn/YlQ==} + /@types/node@20.3.1: + resolution: {integrity: sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==} dev: true /@types/normalize-package-data@2.4.1: @@ -820,8 +820,8 @@ packages: resolution: {integrity: sha512-szL74BnIcok9m7QwYtVmQ+EdIKwbjPANudfuvDrAF8Cljg9MKUlIoc1w5tjj9PMpeSH3U1Xnx//czQybJ0EfSw==} dev: true - /@typescript-eslint/eslint-plugin@5.59.9(@typescript-eslint/parser@5.59.9)(eslint@8.42.0)(typescript@5.1.3): - resolution: {integrity: sha512-4uQIBq1ffXd2YvF7MAvehWKW3zVv/w+mSfRAu+8cKbfj3nwzyqJLNcZJpQ/WZ1HLbJDiowwmQ6NO+63nCA+fqA==} + /@typescript-eslint/eslint-plugin@5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.43.0)(typescript@5.1.3): + resolution: {integrity: sha512-XxuOfTkCUiOSyBWIvHlUraLw/JT/6Io1365RO6ZuI88STKMavJZPNMU0lFcUTeQXEhHiv64CbxYxBNoDVSmghg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -832,24 +832,24 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.5.1 - '@typescript-eslint/parser': 5.59.9(eslint@8.42.0)(typescript@5.1.3) - '@typescript-eslint/scope-manager': 5.59.9 - '@typescript-eslint/type-utils': 5.59.9(eslint@8.42.0)(typescript@5.1.3) - '@typescript-eslint/utils': 5.59.9(eslint@8.42.0)(typescript@5.1.3) + '@typescript-eslint/parser': 5.59.11(eslint@8.43.0)(typescript@5.1.3) + '@typescript-eslint/scope-manager': 5.59.11 + '@typescript-eslint/type-utils': 5.59.11(eslint@8.43.0)(typescript@5.1.3) + '@typescript-eslint/utils': 5.59.11(eslint@8.43.0)(typescript@5.1.3) debug: 4.3.4 - eslint: 8.42.0 + eslint: 8.43.0 grapheme-splitter: 1.0.4 ignore: 5.2.4 natural-compare-lite: 1.4.0 - semver: 7.5.1 + semver: 7.5.2 tsutils: 3.21.0(typescript@5.1.3) typescript: 5.1.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@5.59.9(eslint@8.42.0)(typescript@5.1.3): - resolution: {integrity: sha512-FsPkRvBtcLQ/eVK1ivDiNYBjn3TGJdXy2fhXX+rc7czWl4ARwnpArwbihSOHI2Peg9WbtGHrbThfBUkZZGTtvQ==} + /@typescript-eslint/parser@5.59.11(eslint@8.43.0)(typescript@5.1.3): + resolution: {integrity: sha512-s9ZF3M+Nym6CAZEkJJeO2TFHHDsKAM3ecNkLuH4i4s8/RCPnF5JRip2GyviYkeEAcwGMJxkqG9h2dAsnA1nZpA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -858,26 +858,26 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.59.9 - '@typescript-eslint/types': 5.59.9 - '@typescript-eslint/typescript-estree': 5.59.9(typescript@5.1.3) + '@typescript-eslint/scope-manager': 5.59.11 + '@typescript-eslint/types': 5.59.11 + '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.1.3) debug: 4.3.4 - eslint: 8.42.0 + eslint: 8.43.0 typescript: 5.1.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager@5.59.9: - resolution: {integrity: sha512-8RA+E+w78z1+2dzvK/tGZ2cpGigBZ58VMEHDZtpE1v+LLjzrYGc8mMaTONSxKyEkz3IuXFM0IqYiGHlCsmlZxQ==} + /@typescript-eslint/scope-manager@5.59.11: + resolution: {integrity: sha512-dHFOsxoLFtrIcSj5h0QoBT/89hxQONwmn3FOQ0GOQcLOOXm+MIrS8zEAhs4tWl5MraxCY3ZJpaXQQdFMc2Tu+Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.59.9 - '@typescript-eslint/visitor-keys': 5.59.9 + '@typescript-eslint/types': 5.59.11 + '@typescript-eslint/visitor-keys': 5.59.11 dev: true - /@typescript-eslint/type-utils@5.59.9(eslint@8.42.0)(typescript@5.1.3): - resolution: {integrity: sha512-ksEsT0/mEHg9e3qZu98AlSrONAQtrSTljL3ow9CGej8eRo7pe+yaC/mvTjptp23Xo/xIf2mLZKC6KPv4Sji26Q==} + /@typescript-eslint/type-utils@5.59.11(eslint@8.43.0)(typescript@5.1.3): + resolution: {integrity: sha512-LZqVY8hMiVRF2a7/swmkStMYSoXMFlzL6sXV6U/2gL5cwnLWQgLEG8tjWPpaE4rMIdZ6VKWwcffPlo1jPfk43g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -886,23 +886,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.59.9(typescript@5.1.3) - '@typescript-eslint/utils': 5.59.9(eslint@8.42.0)(typescript@5.1.3) + '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.1.3) + '@typescript-eslint/utils': 5.59.11(eslint@8.43.0)(typescript@5.1.3) debug: 4.3.4 - eslint: 8.42.0 + eslint: 8.43.0 tsutils: 3.21.0(typescript@5.1.3) typescript: 5.1.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types@5.59.9: - resolution: {integrity: sha512-uW8H5NRgTVneSVTfiCVffBb8AbwWSKg7qcA4Ot3JI3MPCJGsB4Db4BhvAODIIYE5mNj7Q+VJkK7JxmRhk2Lyjw==} + /@typescript-eslint/types@5.59.11: + resolution: {integrity: sha512-epoN6R6tkvBYSc+cllrz+c2sOFWkbisJZWkOE+y3xHtvYaOE6Wk6B8e114McRJwFRjGvYdJwLXQH5c9osME/AA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree@5.59.9(typescript@5.1.3): - resolution: {integrity: sha512-pmM0/VQ7kUhd1QyIxgS+aRvMgw+ZljB3eDb+jYyp6d2bC0mQWLzUDF+DLwCTkQ3tlNyVsvZRXjFyV0LkU/aXjA==} + /@typescript-eslint/typescript-estree@5.59.11(typescript@5.1.3): + resolution: {integrity: sha512-YupOpot5hJO0maupJXixi6l5ETdrITxeo5eBOeuV7RSKgYdU3G5cxO49/9WRnJq9EMrB7AuTSLH/bqOsXi7wPA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -910,43 +910,43 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.59.9 - '@typescript-eslint/visitor-keys': 5.59.9 + '@typescript-eslint/types': 5.59.11 + '@typescript-eslint/visitor-keys': 5.59.11 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.1 + semver: 7.5.2 tsutils: 3.21.0(typescript@5.1.3) typescript: 5.1.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils@5.59.9(eslint@8.42.0)(typescript@5.1.3): - resolution: {integrity: sha512-1PuMYsju/38I5Ggblaeb98TOoUvjhRvLpLa1DoTOFaLWqaXl/1iQ1eGurTXgBY58NUdtfTXKP5xBq7q9NDaLKg==} + /@typescript-eslint/utils@5.59.11(eslint@8.43.0)(typescript@5.1.3): + resolution: {integrity: sha512-didu2rHSOMUdJThLk4aZ1Or8IcO3HzCw/ZvEjTTIfjIrcdd5cvSIwwDy2AOlE7htSNp7QIZ10fLMyRCveesMLg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.42.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0) '@types/json-schema': 7.0.12 '@types/semver': 7.5.0 - '@typescript-eslint/scope-manager': 5.59.9 - '@typescript-eslint/types': 5.59.9 - '@typescript-eslint/typescript-estree': 5.59.9(typescript@5.1.3) - eslint: 8.42.0 + '@typescript-eslint/scope-manager': 5.59.11 + '@typescript-eslint/types': 5.59.11 + '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.1.3) + eslint: 8.43.0 eslint-scope: 5.1.1 - semver: 7.5.1 + semver: 7.5.2 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys@5.59.9: - resolution: {integrity: sha512-bT7s0td97KMaLwpEBckbzj/YohnvXtqbe2XgqNvTl6RJVakY5mvENOTPvw5u66nljfZxthESpDozs86U+oLY8Q==} + /@typescript-eslint/visitor-keys@5.59.11: + resolution: {integrity: sha512-KGYniTGG3AMTuKF9QBD7EIrvufkB6O6uX3knP73xbKLMpH+QRPcgnCxjWXSHjMRuOxFLovljqQgQpR0c7GvjoA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.59.9 + '@typescript-eslint/types': 5.59.11 eslint-visitor-keys: 3.4.1 dev: true @@ -1054,12 +1054,12 @@ packages: dev: true optional: true - /acorn-jsx@5.3.2(acorn@8.8.2): + /acorn-jsx@5.3.2(acorn@8.9.0): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.8.2 + acorn: 8.9.0 dev: true /acorn-walk@8.2.0: @@ -1074,8 +1074,8 @@ packages: dev: true optional: true - /acorn@8.8.2: - resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} + /acorn@8.9.0: + resolution: {integrity: sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==} engines: {node: '>=0.4.0'} hasBin: true dev: true @@ -1229,8 +1229,8 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: 4.21.7 - caniuse-lite: 1.0.30001499 + browserslist: 4.21.9 + caniuse-lite: 1.0.30001503 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -1238,8 +1238,8 @@ packages: postcss-value-parser: 4.2.0 dev: true - /ava@5.3.0: - resolution: {integrity: sha512-QYvBdyygl1LGX13IuYsC4bkwVCzZeovMGbxYkD73i7DVJxNlWnFa06YgrBOTbjw2QvSKUl5fOJ92Kj5WK9hSeg==} + /ava@5.3.1: + resolution: {integrity: sha512-Scv9a4gMOXB6+ni4toLuhAm9KYWEjsgBglJl+kMGI5+IVDt120CCDZyB5HNU9DjmLI2t4I0GbnxGLmmRfGTJGg==} engines: {node: '>=14.19 <15 || >=16.15 <17 || >=18'} hasBin: true peerDependencies: @@ -1248,7 +1248,7 @@ packages: '@ava/typescript': optional: true dependencies: - acorn: 8.8.2 + acorn: 8.9.0 acorn-walk: 8.2.0 ansi-styles: 6.2.1 arrgv: 1.0.2 @@ -1409,7 +1409,7 @@ packages: engines: {node: '>=12'} dependencies: bin-version: 6.0.0 - semver: 7.5.1 + semver: 7.5.2 semver-truncate: 2.0.0 dev: true @@ -1456,15 +1456,15 @@ packages: fill-range: 7.0.1 dev: true - /browserslist@4.21.7: - resolution: {integrity: sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA==} + /browserslist@4.21.9: + resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001499 - electron-to-chromium: 1.4.427 + caniuse-lite: 1.0.30001503 + electron-to-chromium: 1.4.433 node-releases: 2.0.12 - update-browserslist-db: 1.0.11(browserslist@4.21.7) + update-browserslist-db: 1.0.11(browserslist@4.21.9) dev: true /buffer-crc32@0.2.13: @@ -1549,14 +1549,14 @@ packages: /caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: - browserslist: 4.21.7 - caniuse-lite: 1.0.30001499 + browserslist: 4.21.9 + caniuse-lite: 1.0.30001503 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true - /caniuse-lite@1.0.30001499: - resolution: {integrity: sha512-IhoQqRrW6WiecFcfZgoJS1YLEN1/HR1vHP5WNgjCARRW7KUNToHHTX3FrwCM+y4zkRa48D9rE90WFYc2IWhDWQ==} + /caniuse-lite@1.0.30001503: + resolution: {integrity: sha512-Sf9NiF+wZxPfzv8Z3iS0rXM1Do+iOy2Lxvib38glFX+08TCYYYGR5fRJXk4d77C4AYwhUjgYgMsMudbh2TqCKw==} dev: true /caseless@0.12.0: @@ -1791,7 +1791,7 @@ packages: js-string-escape: 1.0.1 lodash: 4.17.21 md5-hex: 3.0.1 - semver: 7.5.1 + semver: 7.5.2 well-known-symbols: 2.0.0 dev: true @@ -2310,8 +2310,8 @@ packages: dev: true optional: true - /electron-to-chromium@1.4.427: - resolution: {integrity: sha512-HK3r9l+Jm8dYAm1ctXEWIC+hV60zfcjS9UA5BDlYvnI5S7PU/yytjpvSrTNrSSRRkuu3tDyZhdkwIczh+0DWaw==} + /electron-to-chromium@1.4.433: + resolution: {integrity: sha512-MGO1k0w1RgrfdbLVwmXcDhHHuxCn2qRgR7dYsJvWFKDttvYPx6FNzCGG0c/fBBvzK2LDh3UV7Tt9awnHnvAAUQ==} dev: true /emittery@1.0.1: @@ -2639,7 +2639,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint-watch@8.0.0(eslint@8.42.0): + /eslint-watch@8.0.0(eslint@8.43.0): resolution: {integrity: sha512-piws/uE4gkZdz1pwkaEFx+kSWvoGnVX8IegFRrE1NUvlXjtU0rg7KhT1QDj/NzhAwbiLEfdRHWz5q738R4zDKA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true @@ -2648,7 +2648,7 @@ packages: dependencies: chokidar: 3.5.3 debug: 4.3.4 - eslint: 8.42.0 + eslint: 8.43.0 execa: 5.1.1 keypress: 0.2.1 lodash.debounce: 4.0.8 @@ -2661,15 +2661,15 @@ packages: - supports-color dev: true - /eslint@8.42.0: - resolution: {integrity: sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A==} + /eslint@8.43.0: + resolution: {integrity: sha512-aaCpf2JqqKesMFGgmRPessmVKjcGXqdlAYLLC3THM8t5nBRZRQ+st5WM/hoJXkdioEXLLbXgclUpM0TXo5HX5Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.42.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0) '@eslint-community/regexpp': 4.5.1 '@eslint/eslintrc': 2.0.3 - '@eslint/js': 8.42.0 + '@eslint/js': 8.43.0 '@humanwhocodes/config-array': 0.11.10 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 @@ -2713,8 +2713,8 @@ packages: resolution: {integrity: sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.8.2 - acorn-jsx: 5.3.2(acorn@8.8.2) + acorn: 8.9.0 + acorn-jsx: 5.3.2(acorn@8.9.0) eslint-visitor-keys: 3.4.1 dev: true @@ -4271,7 +4271,7 @@ packages: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.12.1 - semver: 7.5.1 + semver: 7.5.2 validate-npm-package-license: 3.0.4 dev: true @@ -4531,7 +4531,7 @@ packages: /parse5@3.0.3: resolution: {integrity: sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==} dependencies: - '@types/node': 20.3.0 + '@types/node': 20.3.1 dev: true /path-exists@4.0.0: @@ -4728,7 +4728,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.7 + browserslist: 4.21.9 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.4.24 @@ -4741,7 +4741,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.7 + browserslist: 4.21.9 postcss: 8.4.24 postcss-value-parser: 4.2.0 dev: true @@ -4903,7 +4903,7 @@ packages: peerDependencies: postcss: ^8.4 dependencies: - '@csstools/css-color-parser': 1.2.0(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) + '@csstools/css-color-parser': 1.2.1(@csstools/css-parser-algorithms@2.2.0)(@csstools/css-tokenizer@2.1.1) '@csstools/css-parser-algorithms': 2.2.0(@csstools/css-tokenizer@2.1.1) '@csstools/css-tokenizer': 2.1.1 '@csstools/postcss-progressive-custom-properties': 2.3.0(postcss@8.4.24) @@ -4958,7 +4958,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.7 + browserslist: 4.21.9 caniuse-api: 3.0.0 cssnano-utils: 3.1.0(postcss@8.4.24) postcss: 8.4.24 @@ -4993,7 +4993,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.7 + browserslist: 4.21.9 cssnano-utils: 3.1.0(postcss@8.4.24) postcss: 8.4.24 postcss-value-parser: 4.2.0 @@ -5009,8 +5009,8 @@ packages: postcss-selector-parser: 6.0.13 dev: true - /postcss-nesting@11.2.2(postcss@8.4.24): - resolution: {integrity: sha512-aOTiUniAB1bcPE6GGiynWRa6PZFPhOTAm5q3q5cem6QeSijIHHkWr6gs65ukCZMXeak8yXeZVbBJET3VM+HlhA==} + /postcss-nesting@11.3.0(postcss@8.4.24): + resolution: {integrity: sha512-JlS10AQm/RzyrUGgl5irVkAlZYTJ99mNueUl+Qab+TcHhVedLiylWVkKBhRale+rS9yWIJK48JVzQlq3LcSdeA==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 @@ -5085,7 +5085,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.7 + browserslist: 4.21.9 postcss: 8.4.24 postcss-value-parser: 4.2.0 dev: true @@ -5159,8 +5159,8 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-preset-env@8.4.2(postcss@8.4.24): - resolution: {integrity: sha512-Bihxo+FsyVNjsRADiYYnj9Ez0WBSWSSHAe8WvxoMlqrw8H8m6gK9E0MkDd7P6ForoikRIF3I8grGg/pFM6ECRQ==} + /postcss-preset-env@8.5.0(postcss@8.4.24): + resolution: {integrity: sha512-aqAbT5dXqYX5ZvicGKQpaW/eDEZFRfnhV6Hn1Jn2bCKEB9L2MgsTdnIsXsZyFUQflIV2wIs9HTEQgkH5duMCNg==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 @@ -5182,14 +5182,14 @@ packages: '@csstools/postcss-normalize-display-values': 2.0.1(postcss@8.4.24) '@csstools/postcss-oklab-function': 2.2.3(postcss@8.4.24) '@csstools/postcss-progressive-custom-properties': 2.3.0(postcss@8.4.24) - '@csstools/postcss-relative-color-syntax': 1.0.1(postcss@8.4.24) + '@csstools/postcss-relative-color-syntax': 1.0.2(postcss@8.4.24) '@csstools/postcss-scope-pseudo-class': 2.0.2(postcss@8.4.24) '@csstools/postcss-stepped-value-functions': 2.1.1(postcss@8.4.24) '@csstools/postcss-text-decoration-shorthand': 2.2.4(postcss@8.4.24) '@csstools/postcss-trigonometric-functions': 2.1.1(postcss@8.4.24) '@csstools/postcss-unset-value': 2.0.1(postcss@8.4.24) autoprefixer: 10.4.14(postcss@8.4.24) - browserslist: 4.21.7 + browserslist: 4.21.9 css-blank-pseudo: 5.0.2(postcss@8.4.24) css-has-pseudo: 5.0.2(postcss@8.4.24) css-prefers-color-scheme: 8.0.2(postcss@8.4.24) @@ -5213,7 +5213,7 @@ packages: postcss-initial: 4.0.1(postcss@8.4.24) postcss-lab-function: 5.2.3(postcss@8.4.24) postcss-logical: 6.2.0(postcss@8.4.24) - postcss-nesting: 11.2.2(postcss@8.4.24) + postcss-nesting: 11.3.0(postcss@8.4.24) postcss-opacity-percentage: 2.0.0(postcss@8.4.24) postcss-overflow-shorthand: 4.0.1(postcss@8.4.24) postcss-page-break: 3.0.4(postcss@8.4.24) @@ -5240,7 +5240,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.7 + browserslist: 4.21.9 caniuse-api: 3.0.0 postcss: 8.4.24 dev: true @@ -5689,8 +5689,8 @@ packages: dev: true optional: true - /sass@1.63.3: - resolution: {integrity: sha512-ySdXN+DVpfwq49jG1+hmtDslYqpS7SkOR5GpF6o2bmb1RL/xS+wvPmegMvMywyfsmAV6p7TgwXYGrCZIFFbAHg==} + /sass@1.63.4: + resolution: {integrity: sha512-Sx/+weUmK+oiIlI+9sdD0wZHsqpbgQg8wSwSnGBjwb5GwqFhYNwwnI+UWZtLjKvKyFlKkatRK235qQ3mokyPoQ==} engines: {node: '>=14.0.0'} hasBin: true dependencies: @@ -5733,8 +5733,8 @@ packages: hasBin: true dev: true - /semver@7.5.1: - resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==} + /semver@7.5.2: + resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==} engines: {node: '>=10'} hasBin: true dependencies: @@ -6086,12 +6086,12 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.7 + browserslist: 4.21.9 postcss: 8.4.24 postcss-selector-parser: 6.0.13 dev: true - /stylelint-config-recommended-scss@9.0.1(postcss@8.4.24)(stylelint@15.7.0): + /stylelint-config-recommended-scss@9.0.1(postcss@8.4.24)(stylelint@15.8.0): resolution: {integrity: sha512-qAmz/TdrqslwiMTuLM3QXeISUkfEDUXGMfRBCHm/xrkCJNnQefv+mzG2mWTsWkqcVk8HAyUkug10dwAcYp2fCQ==} peerDependencies: postcss: ^8.3.3 @@ -6102,20 +6102,20 @@ packages: dependencies: postcss: 8.4.24 postcss-scss: 4.0.6(postcss@8.4.24) - stylelint: 15.7.0 - stylelint-config-recommended: 10.0.1(stylelint@15.7.0) - stylelint-scss: 4.7.0(stylelint@15.7.0) + stylelint: 15.8.0 + stylelint-config-recommended: 10.0.1(stylelint@15.8.0) + stylelint-scss: 4.7.0(stylelint@15.8.0) dev: true - /stylelint-config-recommended@10.0.1(stylelint@15.7.0): + /stylelint-config-recommended@10.0.1(stylelint@15.8.0): resolution: {integrity: sha512-TQ4xQ48tW4QSlODcti7pgSRqBZcUaBzuh0jPpfiMhwJKBPkqzTIAU+IrSWL/7BgXlOM90DjB7YaNgFpx8QWhuA==} peerDependencies: stylelint: ^15.0.0 dependencies: - stylelint: 15.7.0 + stylelint: 15.8.0 dev: true - /stylelint-config-standard-scss@7.0.1(postcss@8.4.24)(stylelint@15.7.0): + /stylelint-config-standard-scss@7.0.1(postcss@8.4.24)(stylelint@15.8.0): resolution: {integrity: sha512-m5sRdtsB1F5fnC1Ozla7ryftU47wVpO+HWd+JQTqeoG0g/oPh5EfbWfcVHbNCEtuoHfALIySiUWS20pz2hX6jA==} peerDependencies: postcss: ^8.3.3 @@ -6125,31 +6125,31 @@ packages: optional: true dependencies: postcss: 8.4.24 - stylelint: 15.7.0 - stylelint-config-recommended-scss: 9.0.1(postcss@8.4.24)(stylelint@15.7.0) - stylelint-config-standard: 30.0.1(stylelint@15.7.0) + stylelint: 15.8.0 + stylelint-config-recommended-scss: 9.0.1(postcss@8.4.24)(stylelint@15.8.0) + stylelint-config-standard: 30.0.1(stylelint@15.8.0) dev: true - /stylelint-config-standard@30.0.1(stylelint@15.7.0): + /stylelint-config-standard@30.0.1(stylelint@15.8.0): resolution: {integrity: sha512-NbeHOmpRQhjZh5XB1B/S4MLRWvz4xxAxeDBjzl0tY2xEcayNhLbaRGF0ZQzq+DQZLCcPpOHeS2Ru1ydbkhkmLg==} peerDependencies: stylelint: ^15.0.0 dependencies: - stylelint: 15.7.0 - stylelint-config-recommended: 10.0.1(stylelint@15.7.0) + stylelint: 15.8.0 + stylelint-config-recommended: 10.0.1(stylelint@15.8.0) dev: true - /stylelint-order@6.0.3(stylelint@15.7.0): + /stylelint-order@6.0.3(stylelint@15.8.0): resolution: {integrity: sha512-1j1lOb4EU/6w49qZeT2SQVJXm0Ht+Qnq9GMfUa3pMwoyojIWfuA+JUDmoR97Bht1RLn4ei0xtLGy87M7d29B1w==} peerDependencies: stylelint: ^14.0.0 || ^15.0.0 dependencies: postcss: 8.4.24 postcss-sorting: 8.0.2(postcss@8.4.24) - stylelint: 15.7.0 + stylelint: 15.8.0 dev: true - /stylelint-scss@4.7.0(stylelint@15.7.0): + /stylelint-scss@4.7.0(stylelint@15.8.0): resolution: {integrity: sha512-TSUgIeS0H3jqDZnby1UO1Qv3poi1N8wUYIJY6D1tuUq2MN3lwp/rITVo0wD+1SWTmRm0tNmGO0b7nKInnqF6Hg==} peerDependencies: stylelint: ^14.5.1 || ^15.0.0 @@ -6158,11 +6158,11 @@ packages: postcss-resolve-nested-selector: 0.1.1 postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 - stylelint: 15.7.0 + stylelint: 15.8.0 dev: true - /stylelint@15.7.0: - resolution: {integrity: sha512-fQRwHwWuZsDn4ENyE9AsKkOkV9WlD2CmYiVDbdZPdS3iZh0ceypOn1EuwTNuZ8xTrHF+jVeIEzLtFFSlD/nJHg==} + /stylelint@15.8.0: + resolution: {integrity: sha512-x9qBk84F3MEjMEUNCE7MtWmfj9G9y5XzJ0cpQeJdy2l/IoqjC8Ih0N0ytmOTnXE4Yv0J7I1cmVRQUVNSPCxTsA==} engines: {node: ^14.13.1 || >=16.0.0} hasBin: true dependencies: @@ -6206,7 +6206,6 @@ packages: supports-hyperlinks: 3.0.0 svg-tags: 1.0.0 table: 6.8.1 - v8-compile-cache: 2.3.0 write-file-atomic: 5.0.1 transitivePeerDependencies: - supports-color @@ -6453,8 +6452,8 @@ packages: dev: true optional: true - /tweakpane@3.1.9: - resolution: {integrity: sha512-vMzh3X8uHo9HDY+9S9V0bc+UBScs8VYmMeOEW+BvynczV0aiLHweYv4eKpyoqpcRrQlkLhUsx8Dvv/1/qiCESg==} + /tweakpane@3.1.10: + resolution: {integrity: sha512-rqwnl/pUa7+inhI2E9ayGTqqP0EPOOn/wVvSWjZsRbZUItzNShny7pzwL3hVlaN4m9t/aZhsP0aFQ9U5VVR2VQ==} dev: true /tweetnacl@0.14.5: @@ -6552,13 +6551,13 @@ packages: engines: {node: '>=8'} dev: true - /update-browserslist-db@1.0.11(browserslist@4.21.7): + /update-browserslist-db@1.0.11(browserslist@4.21.9): resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.7 + browserslist: 4.21.9 escalade: 3.1.1 picocolors: 1.0.0 dev: true @@ -6590,10 +6589,6 @@ packages: hasBin: true dev: true - /v8-compile-cache@2.3.0: - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} - dev: true - /validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} dependencies: From 7f238772e12ca1c1077d587e4752ef11f8930065 Mon Sep 17 00:00:00 2001 From: "Raoul v. R" Date: Sat, 17 Jun 2023 17:33:58 +0200 Subject: [PATCH 6/7] Version 6.32.0 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e5f9ba5c2..62519ec30 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "postprocessing", - "version": "6.31.2", - "description": "A post processing library that provides the means to implement image filter effects for three.js.", + "version": "6.32.0", + "description": "A post processing library for three.js.", "homepage": "https://github.com/pmndrs/postprocessing", "license": "Zlib", "type": "module", From 99cda7c46fa89f251bac439d430982f4426bdf7a Mon Sep 17 00:00:00 2001 From: "Raoul v. R" Date: Sat, 17 Jun 2023 17:59:02 +0200 Subject: [PATCH 7/7] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 62519ec30..15550bb52 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "license": "Zlib", "type": "module", "sideEffects": false, - "main": "./build/index.js", + "main": "./build/index.cjs", "module": "./build/index.js", "types": "./types/index.d.ts", "exports": {