Skip to content

Instantly share code, notes, and snippets.

@Qvatra
Last active August 29, 2015 14:10
Show Gist options
  • Save Qvatra/e874ded68b2a640a3f10 to your computer and use it in GitHub Desktop.
Save Qvatra/e874ded68b2a640a3f10 to your computer and use it in GitHub Desktop.
Ionic development: shellinit.bat
@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