babylonjs-gui 6.8.0 → 6.9.0

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/config.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "declarationLibs": ["@lts/gui"],
3
+ "devPackageName": "gui",
4
+ "filename": "babylon.gui.module.d.ts",
5
+ "outputDirectory": "./",
6
+ "namedExportPathsToExclude": "3D/materials/fluent/fluentMaterial",
7
+ "addToDocumentation": true,
8
+ "fileFilterRegex": "stories"
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-gui",
3
- "version": "6.8.0",
3
+ "version": "6.9.0",
4
4
  "main": "babylon.gui.js",
5
5
  "types": "babylon.gui.module.d.ts",
6
6
  "files": [
@@ -14,15 +14,13 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.*"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^6.8.0"
17
+ "babylonjs": "^6.9.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",
21
21
  "@lts/gui": "1.0.0",
22
- "rimraf": "^3.0.2",
23
22
  "source-map-loader": "^4.0.0",
24
23
  "ts-loader": "^9.2.6",
25
- "typescript": "^4.4.4",
26
24
  "webpack": "^5.73.0",
27
25
  "webpack-cli": "^5.1.0",
28
26
  "webpack-merge": "^5.8.0"
package/src/index.ts ADDED
@@ -0,0 +1,4 @@
1
+ import * as gui from "gui/legacy/legacy";
2
+
3
+ export { gui };
4
+ export default gui;
@@ -0,0 +1,13 @@
1
+ {
2
+ "extends": "../../../../tsconfig.build.json",
3
+
4
+ "compilerOptions": {
5
+ "outDir": "./dist",
6
+ "rootDir": "./src",
7
+ "declaration": false,
8
+ "paths": {
9
+ "gui/*": ["lts/gui/dist/*"],
10
+ }
11
+ },
12
+ "include": ["./src/**/*"]
13
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "../../../../tsconfig.json",
3
+
4
+ "compilerOptions": {
5
+ "paths": {
6
+ "gui/*": ["lts/gui/generated/*"],
7
+ }
8
+ },
9
+ }
@@ -0,0 +1,12 @@
1
+ const path = require("path");
2
+ const commonConfigGenerator = require("@dev/build-tools").webpackTools.commonUMDWebpackConfiguration;
3
+
4
+ module.exports = (env) => {
5
+ const commonConfig = commonConfigGenerator({
6
+ mode: env.production ? "production" : "development",
7
+ devPackageName: "gui",
8
+ namespace: "BABYLON.GUI",
9
+ outputPath: path.resolve(__dirname),
10
+ });
11
+ return commonConfig;
12
+ };