Update RunningOnDeviceWindows.md (#677)

This commit is contained in:
James McGinty 2016-09-09 00:24:01 +10:00 коммит произвёл Eric Rozell
Родитель 666de431b2
Коммит e4df0edec9
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -58,4 +58,13 @@ react-native bundle --platform windows --entry-file index.windows.js
--assets-dest windows\myapp\ReactAssets
```
To generate the release (minified) bundle, add the --dev=false :
```
react-native bundle --platform windows --entry-file index.windows.js
--bundle-output windows\myapp\ReactAssets\index.windows.bundle
--assets-dest windows\myapp\ReactAssets
--dev=false
```
Be sure to update the paths to match the path to your ReactAssets folder.