Build Options

Respond uses gulp to perform builds for the application. This references covers the build options available to Respond 6.

Repo Description
gulp The default build performs all actions necessary to deploy the application to production. It copies library files from the node_modules directory (installed by NPM) to the public/app/libs directory. It then copies the static HTML and image files from public/src to public/app. It then runs the Typescript compiler and bundles the application using the SystemJS builder.
gulp dev-build Used to debug code changes when using the systemjs loader. Copies the static files from public/src to public/app and runs the Typescript compiler.
gulp build Used to debug code changes using the production bundles. Copies the static files from public/src to public/app and runs the Typescript compiler. I then bundles the application using the SystemJS builder.
gulp zip ZIPS the code and places it in dist/release.zip.