Last active
August 29, 2015 14:10
-
-
Save Qvatra/e874ded68b2a640a3f10 to your computer and use it in GitHub Desktop.
Ionic development: shellinit.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@rem This script configures some settings for command line development with local node_modules | |
@rem Add the node_modules\.bin folder (found with 'npm bin') to the path | |
@cd %~dp0 | |
@for /f %%i in ('npm bin') do set PATH=%%i;%PATH% | |
@rem make sure everything is installed | |
call npm install | |
call bower install | |
call tsd update | |
call tsd rebundle | |
call cordova restore plugins --experimental |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment