소스 검색

no need to add "bundle" in the viewer's file name

Raanan Weber 7 년 전
부모
커밋
7a42664b0a
3개의 변경된 파일84개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      Tools/Gulp/config.json
  2. 1 1
      Tools/Gulp/gulpfile.js
  3. 82 0
      dist/preview release/viewer/babylon.viewer.js

+ 1 - 0
Tools/Gulp/config.json

@@ -1667,6 +1667,7 @@
         "libraries": [
             {
                 "files": [],
+                "noBundleInName": true,
                 "output": "babylon.viewer.js",
                 "webpack": "../../Viewer/webpack.gulp.config.js",
                 "bundle": "true",

+ 1 - 1
Tools/Gulp/gulpfile.js

@@ -401,7 +401,7 @@ var buildExternalLibrary = function (library, settings, watch) {
         if (library.webpack) {
             return waitAll.on("end", function () {
                 return webpack(require(library.webpack))
-                    .pipe(rename(library.output.replace(".js", ".bundle.js")))
+                    .pipe(rename(library.output.replace(".js", library.noBundleInName ? '.js' : ".bundle.js")))
                     .pipe(addModuleExports(library.moduleDeclaration, false, false, true))
                     .pipe(uglify())
                     .pipe(optimisejs())

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 82 - 0
dist/preview release/viewer/babylon.viewer.js