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.
- package/.npmignore +5 -0
- package/babylon.nodeEditor.d.ts +1 -1
- package/babylon.nodeEditor.js.map +1 -1
- package/babylon.nodeEditor.max.js.map +1 -1
- package/babylon.nodeEditor.module.d.ts +1 -2
- package/config.json +7 -0
- package/package.json +2 -2
- package/src/index.ts +3 -0
- package/tsconfig.build.json +10 -0
- package/tsconfig.json +3 -0
- package/webpack.config.js +17 -0
|
@@ -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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-editor",
|
|
3
|
-
"version": "6.
|
|
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.
|
|
17
|
+
"babylonjs": "^6.9.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|
package/src/index.ts
ADDED
package/tsconfig.json
ADDED
|
@@ -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
|
+
};
|