Navigation Menu

Skip to content

Commit

Permalink
Firs replacement push for new inspector
Browse files Browse the repository at this point in the history
  • Loading branch information
deltakosh committed Nov 2, 2018
1 parent c493e09 commit ea39ee3
Show file tree
Hide file tree
Showing 176 changed files with 11,550 additions and 14,928 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Expand Up @@ -189,3 +189,7 @@ Viewer/tests/Lib/**/*.js
Viewer/tests/commons/**/*.js
.sass-cache/
gui/dist/
/Viewer/tests/tsc
/Viewer/tests/tsc.cmd
/Viewer/tests/tsserver
/Viewer/tests/tsserver.cmd
5 changes: 3 additions & 2 deletions Tools/Gulp/config.json
Expand Up @@ -1963,7 +1963,7 @@
"main": "../../dist/preview release/gui/build/index.d.ts",
"out": "../babylon.gui.module.d.ts",
"baseDir": "../../dist/preview release/gui/build/",
"headerText": "BabylonJS GUI"
"headerText": "Babylon.js GUI"
},
"processDeclaration": {
"filename": "babylon.gui.module.d.ts",
Expand All @@ -1987,6 +1987,7 @@
"webpack": "../../inspector/webpack.config.js",
"bundle": "true",
"extendsRoot": true,
"babylonIncluded": false,
"useOutputForDebugging": true
}
],
Expand All @@ -1998,7 +1999,7 @@
"main": "../../dist/preview release/inspector/build/index.d.ts",
"out": "../babylon.inspector.module.d.ts",
"baseDir": "../../dist/preview release/inspector/build/",
"headerText": "BabylonJS Inspector"
"headerText": "Babylon.js Inspector"
},
"processDeclaration": {
"filename": "babylon.inspector.module.d.ts",
Expand Down
9 changes: 6 additions & 3 deletions Tools/Gulp/gulpfile.js
Expand Up @@ -274,7 +274,7 @@ gulp.task("build", gulp.series("shaders", function build() {
* TsLint all typescript files from the src directory.
*/
gulp.task("typescript-tsLint", function() {
const dtsFilter = filter(['**', '!**/*.d.ts'], {restore: false});
const dtsFilter = filter(['**', '!**/*.d.ts'], { restore: false });
return gulp.src(config.typescript)
.pipe(dtsFilter)
.pipe(gulpTslint({
Expand Down Expand Up @@ -348,7 +348,7 @@ gulp.task("tsLint", gulp.series("typescript-tsLint", "typescript-libraries-tsLin
* Compiles all typescript files and creating a js and a declaration file.
*/
gulp.task("typescript-compile", function() {
const dtsFilter = filter(['**', '!**/*.d.ts'], {restore: false});
const dtsFilter = filter(['**', '!**/*.d.ts'], { restore: false });
var tsResult = gulp.src(config.typescript)
.pipe(dtsFilter)
.pipe(sourcemaps.init())
Expand Down Expand Up @@ -676,6 +676,9 @@ var buildExternalLibrary = function(library, settings, watch) {

let wpBuild = webpackStream(require(library.webpack), webpack);


console.log(outputDirectory);

let buildEvent = wpBuild
.pipe(gulp.dest(outputDirectory))
//back-compat
Expand Down Expand Up @@ -883,7 +886,7 @@ gulp.task("netlify-cleanup", function() {

// this is needed for the modules for the declaration files.
gulp.task("modules-compile", function() {
const dtsFilter = filter(['**', '!**/*.d.ts'], {restore: false});
const dtsFilter = filter(['**', '!**/*.d.ts'], { restore: false });
var tsResult = gulp.src(config.typescript)
.pipe(dtsFilter)
.pipe(sourcemaps.init())
Expand Down

0 comments on commit ea39ee3

Please sign in to comment.