Build Process

You can use Gulp commands to build or serve the FM application. There is difference between building module for development or production. Details of specific gulp tasks you can find in gulp.js file. Also you can find all executable commands in scripts block in package.json file.

Development

Use the following command to build and serve an application for development:

gulp serve

This command will compile typescript code to javascript and run polymer server.

Production

For production build you can call

npm run build

Last updated