Skip to content

Commit 74005aa

Browse files
authored
Merge pull request #5787 from sebavan/master
Relase 4.0.0-alpha.20 Former-commit-id: f5a43db0fba75602d698d0b993272fd6f95f8b73
2 parents 1111b69 + a846188 commit 74005aa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Tools/Publisher/tasks/buildBabylonJSAndDependencies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const colorConsole = require("../../NodeHelpers/colorConsole");
88
*/
99
function buildBabylonJSAndDependencies() {
1010
colorConsole.log("Running gulp compilation");
11-
let exec = shelljs.exec("gulp typescript-libraries typescript-es6", {
11+
let exec = shelljs.exec("gulp typescript-all", {
1212
cwd: path.resolve(__dirname, "../../Gulp/")
1313
});
1414
if (exec.code) {

Tools/Publisher/tasks/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ module.exports = function(production, options) {
5858
return;
5959
}
6060

61-
buildBabylonJSAndDependencies();
6261
versionNumberManager.updateEngineVersion(version);
62+
buildBabylonJSAndDependencies();
6363
versionNumberManager.updateRootPackageVersion(version);
6464

6565
process.env.BABYLONJSREALPUBLISH = true;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"name": "babylonjs",
1111
"description": "Babylon.js is a JavaScript 3D engine based on webgl.",
12-
"version": "4.0.0-alpha.19",
12+
"version": "4.0.0-alpha.20",
1313
"repository": {
1414
"type": "git",
1515
"url": "https://github.com/BabylonJS/Babylon.js.git"

src/Engines/engine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ export class Engine {
491491
* Returns the current version of the framework
492492
*/
493493
public static get Version(): string {
494-
return "4.0.0-alpha.19";
494+
return "4.0.0-alpha.20";
495495
}
496496

497497
/**

0 commit comments

Comments
 (0)