@babylonjs/post-processes 5.0.0-rc.12 → 5.0.0-rc.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/asciiArt/index.js CHANGED
@@ -1,2 +1,2 @@
1
- export * from "./asciiArtPostProcess";
1
+ export * from "./asciiArtPostProcess.js";
2
2
  //# sourceMappingURL=index.js.map
@@ -5,7 +5,7 @@ import { BaseTexture } from "@babylonjs/core/Materials/Textures/baseTexture.js";
5
5
  import { Texture } from "@babylonjs/core/Materials/Textures/texture.js";
6
6
  import { PostProcess } from "@babylonjs/core/PostProcesses/postProcess.js";
7
7
  import "@babylonjs/core/Engines/Extensions/engine.dynamicTexture.js";
8
- import "./digitalrain.fragment";
8
+ import "./digitalrain.fragment.js";
9
9
  /**
10
10
  * DigitalRainFontTexture is the helper class used to easily create your digital rain font texture.
11
11
  *
@@ -1,2 +1,2 @@
1
- export * from "./digitalRainPostProcess";
1
+ export * from "./digitalRainPostProcess.js";
2
2
  //# sourceMappingURL=index.js.map
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /* eslint-disable import/no-internal-modules */
2
- export * from "./asciiArt/index";
3
- export * from "./digitalRain/index";
2
+ export * from "./asciiArt/index.js";
3
+ export * from "./digitalRain/index.js";
4
4
  //# sourceMappingURL=index.js.map
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable import/no-internal-modules */
2
- import * as postProcessLibrary from "../asciiArt/index";
2
+ import * as postProcessLibrary from "../asciiArt/index.js";
3
3
  /**
4
4
  * This is the entry point for the UMD module.
5
5
  * The entry point for a future ESM package should be index.ts
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
10
10
  globalObject.BABYLON[key] = postProcessLibrary[key];
11
11
  }
12
12
  }
13
- export * from "../asciiArt/index";
13
+ export * from "../asciiArt/index.js";
14
14
  //# sourceMappingURL=legacy-asciiArt.js.map
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable import/no-internal-modules */
2
- import * as postProcessLibrary from "../digitalRain/index";
2
+ import * as postProcessLibrary from "../digitalRain/index.js";
3
3
  /**
4
4
  * This is the entry point for the UMD module.
5
5
  * The entry point for a future ESM package should be index.ts
@@ -10,5 +10,5 @@ if (typeof globalObject !== "undefined") {
10
10
  globalObject.BABYLON[key] = postProcessLibrary[key];
11
11
  }
12
12
  }
13
- export * from "../digitalRain/index";
13
+ export * from "../digitalRain/index.js";
14
14
  //# sourceMappingURL=legacy-digitalRain.js.map
package/legacy/legacy.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable import/no-internal-modules */
2
- import * as postProcessLibrary from "../index";
2
+ import * as postProcessLibrary from "../index.js";
3
3
  /**
4
4
  *
5
5
  * This is the entry point for the UMD module.
@@ -11,5 +11,5 @@ if (typeof globalObject !== "undefined") {
11
11
  globalObject.BABYLON[key] = postProcessLibrary[key];
12
12
  }
13
13
  }
14
- export * from "../index";
14
+ export * from "../index.js";
15
15
  //# sourceMappingURL=legacy.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babylonjs/post-processes",
3
- "version": "5.0.0-rc.12",
3
+ "version": "5.0.0-rc.13",
4
4
  "main": "index.js",
5
5
  "module": "index.js",
6
6
  "types": "index.d.ts",
@@ -15,11 +15,11 @@
15
15
  "build": "npm run clean && npm run compile",
16
16
  "clean": "rimraf dist && rimraf *.tsbuildinfo && rimraf \"./**/*.!(md|json|build.json)\"",
17
17
  "compile": "tsc -b tsconfig.build.json",
18
- "postcompile": "build-tools -c add-js-to-es6 --path ./dist/**/*.js",
18
+ "postcompile": "build-tools -c add-js-to-es6",
19
19
  "prepublishOnly": "build-tools -c prepare-es6-build"
20
20
  },
21
21
  "dependencies": {
22
- "@babylonjs/core": "^5.0.0-rc.12",
22
+ "@babylonjs/core": "^5.0.0-rc.13",
23
23
  "tslib": "^2.3.1"
24
24
  },
25
25
  "devDependencies": {