Builds

Build sets allow you to create style revisions from a collection of styleshots within the same project. If all has gone well up to this point, you should be able to see a list of the styleshots you’ve created.

Triggering new builds

Once you’ve updated the styling in your CSS, you can see how these changes impact all the styleshots in a project by triggering a new build.

New builds can be triggered by selecting a project with the New Build button on the build list page, or by issuing the build command using the command line client or API.


// npm install butterflyfx-client
const API_KEY = “INSERT-API-KEY-HERE”;
const PROJECT_ID = 0;
const ButterflyFX = require(‘butterflyfx-client’);
let client = new ButterflyFX({project:PROJECT_ID, token:API_KEY});
client.build();