babylonjs-node-editor 6.8.1 → 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.
@@ -4016,7 +4016,6 @@ export type FramePortData = {
4016
4016
  frame: GraphFrame;
4017
4017
  port: FrameNodePort;
4018
4018
  };
4019
- export {};
4020
4019
 
4021
4020
  }
4022
4021
  declare module "babylonjs-node-editor/propertyChangedEvent" {
@@ -8214,7 +8213,7 @@ declare module BABYLON.NodeEditor {
8214
8213
  declare module BABYLON.NodeEditor.SharedUIComponents {
8215
8214
  export type FramePortData = {
8216
8215
  frame: BABYLON.NodeEditor.SharedUIComponents.GraphFrame;
8217
- port: FrameNodePort;
8216
+ port: BABYLON.NodeEditor.SharedUIComponents.FrameNodePort;
8218
8217
  };
8219
8218
 
8220
8219
 
package/config.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "declarationLibs": ["@tools/node-editor", "@dev/shared-ui-components"],
3
+ "devPackageName": "nodeEditor",
4
+ "filename": "babylon.nodeEditor.module.d.ts",
5
+ "outputDirectory": "./",
6
+ "fileFilterRegex": "stories"
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-node-editor",
3
- "version": "6.8.1",
3
+ "version": "6.9.0",
4
4
  "main": "babylon.nodeEditor.js",
5
5
  "types": "babylon.nodeEditor.module.d.ts",
6
6
  "files": [
@@ -14,7 +14,7 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.*"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^6.8.1"
17
+ "babylonjs": "^6.9.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",
package/src/index.ts ADDED
@@ -0,0 +1,3 @@
1
+ import * as nodeEditor from "node-editor/legacy/legacy";
2
+ export { nodeEditor };
3
+ export default nodeEditor;
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "../../../../tsconfig.build.json",
3
+
4
+ "compilerOptions": {
5
+ "outDir": "./dist",
6
+ "rootDir": "./src",
7
+ "declaration": false,
8
+ },
9
+ "include": ["./src/**/*"]
10
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": "../../../../tsconfig.json"
3
+ }
@@ -0,0 +1,17 @@
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: "node-editor",
8
+ devPackageAliasPath: `../../../tools/nodeEditor/dist`,
9
+ namespace: "NODEEDITOR",
10
+ maxMode: true,
11
+ outputPath: path.resolve(__dirname),
12
+ alias: {
13
+ "shared-ui-components": path.resolve("../../../dev/sharedUiComponents/dist"),
14
+ },
15
+ });
16
+ return commonConfig;
17
+ };