소스 검색

Gulp readme

sebavan 6 년 전
부모
커밋
43ae36d1f4
1개의 변경된 파일7개의 추가작업 그리고 53개의 파일을 삭제
  1. 7 53
      Tools/Gulp/readme.md

+ 7 - 53
Tools/Gulp/readme.md

@@ -22,44 +22,21 @@ npm install
 npm update
 ```
 
-### Update config.json if you want to add your own files:
-```
-"extras" : {
-    "files": [
-        "file1.js", "file2.js"
-    ]
-}
-```
-## From the javascript source
-### Build Babylon.js from the javascript files:
+## Build all the distributed files and tests (release build):
 
 ```
 gulp
 ```
-Will be generated :
-- babylon.js
-- babylon.max.js (unminified)
-
-## From the typescript source
-### Build Babylon.js from the typescript files:
-
-```
-gulp typescript
-```
-Will be generated :
-- babylon.js
-- babylon.d.ts
-- babylon.noworker.js (minified version without collisions workers)
-- babylon.max.js (unminified)
+Will generate all the files of the dist/preview release folder.
 
-Be aware that all js files content will be overwritten.
+## Build all the distributed files without tests (release build):
 
-### Build Babylon.js when you save a typescript file:
 ```
-gulp watch
+gulp typescript-libraries
 ```
+Will generate all the files of the dist/preview release folder.
 
-### Run Integrated Web Server and watch for changes:
+## Run Integrated Web Server and watch for changes (dev build):
 ```
 gulp run
 ```
@@ -69,27 +46,4 @@ you can now freely test in the following URLs:
 - [Materials Library](http://localhost:1338/materialsLibrary/index.html)
 - [Postprocess Library](http://localhost:1338/postProcessLibrary/index.html)
 - [Procedural Textures Library](http://localhost:1338/proceduralTexturesLibrary/index.html)
-- [Local Dev Samples](http://localhost:1338/localDev/index.html)
-
-### Compile all the typscript files to their javascript respective files including declaration file
-```
-gulp typescript-compile
-```
-
-Be aware that all js files content will be overwritten.
-
-### Compile all the libraries
-```
-gulp typescript-libraries
-```
-
-Be aware that all js files content will be overwritten.
-
-### Compile all the typscript and the library
-```
-gulp typescript-all
-```
-### Zip individual Blender python files for distribute-able
-```
-gulp zip-blender
-```
+- [Local Dev Samples](http://localhost:1338/localDev/index.html)