Home Run Angular cli, React cli, Aurelia or Vue cli build in VSTS
Post
Cancel

Run Angular cli, React cli, Aurelia or Vue cli build in VSTS

Modern JavaScript frameworks come with dedicated command line interface (CLI). It applies for:

It is great for developers because their life is easier. The only question is how to run such build in VSTS without multiple hacks.

Before we start

The article is based on VSTS, but as I know it can be applied the same way in TeamCity, Jenkins and other CI tools.

Command line task

VSTS supports npm, gulp and grunt task. Simple drag&drop. But for example, Angular has it own CLI. The suggested build command is

1
ng bulid --env=prod

To run the custom command in VSTS we can create command line task for Windows agent or batch script if you are on Linux. The example command is:

1
$(Build.SourcesDirectory)\node_modules\.bin\ng.cmd

Above assume that in package.json we will have saved proper CLI as dev dependency. According to above, the task will have below definition.

Of course on Linux agent change slash to backslash. If you are confused about slash and backslash, it is easy to remember with Slash pictures ;)

First success. The above script is working. Thu build logs are ugly but who cares. But can we do it better?

Npm script

Instead of running command line, we can put a build command into package.json file. Moreover, most nowadays templates contain it already. For example, after we create a project from Angular template we have got

1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "name": "Your name here!",
  "version": "0.0.0",
  "license": "MIT",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  //unimportant rest of the file

To be precise we can run build using:

1
npm run build

Which is equal to above ng build. Of course, we can add options like in the original command. To use custom arguments when executing scripts, but you need to prepend them with --. For example, to build production environment we run:

1
npm run build -- --env=prod

Which is exactly same as the original command ng bulid --env=prod. The npm command looks, in my opinion, more ugly but it is more CI friendly. Using it has an unexpected bonus. We can forget about slash and backslash configuration, and run the same build definition on Windows and Linux agent.

Npm task

In the VSTS we can choose npm task and apply arguments like below.

To sum up. If we decide to wrap framework command line interface with npm scripts, the build process is a piece of cake and logs looks much more human-friendly.

If you have a better idea or have some doubts, please let me know.

This post is licensed under CC BY 4.0 by the author.