@@ -6,7 +6,7 @@ module.exports = function (varName, moduleName, subModule, extendsRoot, dependen
let exportText = "BABYLON";
if (subModule && !extendsRoot) {
- exportText += '.' + varName;
+ exportText += '.' + varName.name;
}
let referenceText = '';
@@ -100,7 +100,9 @@ if (loginCheck.code === 0) {
prompt.get(['version'], function (err, result) {
let version = result.version;
updateEngineVersion(version);
- runGulp();
+ if (process.argv.indexOf('--no-build') === -1) {
+ runGulp();
+ }
processPackages(version);
console.log("done, please tag git with " + version);
@@ -1,7 +1,7 @@
{
"name": "babylonjs-gltf2interface",
"description": "A typescript declaration of babylon's gltf2 inteface.",
- "version": "3.2.0-alpha9",
+ "version": "3.2.0-alpha10",
"repository": {
"type": "git",
"url": "https://github.com/BabylonJS/Babylon.js.git"
@@ -2,7 +2,7 @@
declare module 'babylonjs-gui' {
- export = BABYLON.[object Object];
+ export = BABYLON.GUI;
declare module BABYLON.GUI {
@@ -4,7 +4,7 @@
},
"name": "babylonjs-gui",
"description": "The Babylon.js GUI library is an extension you can use to generate interactive user interface. It is build on top of the DynamicTexture.",
"name": "babylonjs-inspector",
"description": "The Babylon.js inspector.",
"name": "babylonjs-loaders",
"description": "The Babylon.js file loaders library is an extension you can use to load different 3D file types into a Babylon scene.",
@@ -27,7 +27,7 @@
],
"license": "Apache-2.0",
"dependencies": {
- "babylonjs-gltf2interface": "3.2.0-alpha9"
+ "babylonjs-gltf2interface": "3.2.0-alpha10"
"peerDependencies": {
"babylonjs": ">=3.2.0-alpha"
"name": "babylonjs-materials",
"description": "The Babylon.js materials library is a collection of advanced materials to be used in a Babylon.js scene.",
"name": "babylonjs-post-process",
"name": "babylonjs-procedural-textures",
"name": "babylonjs-serializers",
"description": "The Babylon.js serializers library is an extension you can use to serialize Babylon scenes.",
"name": "babylonjs-viewer",
"description": "A simple-to-use viewer based on BabylonJS to display 3D elements natively",
@@ -9,7 +9,7 @@
"name": "babylonjs",
"description": "Babylon.js is a JavaScript 3D engine based on webgl.",
@@ -585,7 +585,7 @@
public static get Version(): string {
- return "3.2.0-alpha9";
+ return "3.2.0-alpha10";
// Updatable statics so stick with vars here