Browse Source

Update readme.md

SideraX 11 years ago
parent
commit
670f8f798c
1 changed files with 12 additions and 0 deletions
  1. 12 0
      Tools/Gulp/readme.md

+ 12 - 0
Tools/Gulp/readme.md

@@ -18,14 +18,26 @@ npm install -g gulp
 ```
 npm install
 ```
+### Update gulpfile if you want to add files:
+```
+return gulp.src([
+      '../../Babylon/Math/babylon.math.js',
+      '../../Babylon/Math/babylon.axis.js',
+      
+      ....
+```
 
 ### Build Babylon.js :
 
 ```
 gulp
 ```
+Will be generated :
+- build/babylon.js
+- build/babylon.min.js
 
 ### Build Babylon.js when you save a file:
 ```
 gulp watch
 ```
+