Builder
Check out the Builder Aspect on Bit.dev
#
BackgroundBit's build process is an extensible CI for independent components. It validates a component is not dependent on its context (the workspace), tests it, and generates all artifacts necessary for it to be viewed and consumed as an independent module (its distributable code, bundled preview, etc.).
The Build Pipeline is an Environment Service responsible for sequencing and executing a component's Build Tasks. As mentioned earlier, these tasks are performed on a component only after it's been isolated from the rest of the workspace.
A component's default series of Build Tasks is composed of tasks set by Bit and by its environment.
#
Isolated buildsComponents authored in a Bit workspace are created to be completely portable, and thus independent. To address that, the build process starts by creating a component 'capsule' which is an isolated instance of a component, generated in a separate directory in your filesystem.
As part of the capsule creation, all packages listed as dependencies of that component will be installed. This step is necessary to validate there are no dependency-graph issues (a component that is not totally isolated will be able to use packages installed in parent directories in your workspace, by other components. This will translate into a "false positive" result when testing for dependency-graph issues in a non-isolated location).
#
Incremental buildsWhen a component "goes through" the build pipeline, all of its dependencies are built as well. If a dependency has not changed since its last build, the build process will use its artifacts from the previous build (and will not process it again). This optimization to the build process supplements the "innate optimization" that naturally comes from developing (and building) independent components instead of a single monolithic codebase.
#
Environment-specific buildsEach Bit environment determines its own build pipeline. That means, a single workspace that uses multiple environments will run a different set of build tasks on different components depending on their associated environment. This is another Bit feature that enables seamless transitioning between different development environments, all in the same workspace. It also makes it much easier to integrate the Build Pipeline in your (remote) CI, as it only requires executing the build step - all other per-component build configurations are already set by the various environments being used.
Since environments are extensible, so are the build pipelines configured by them.
#
Build taskAn example of a build-task is compile
, it's written in the compiler aspect and is running on each one of the capsules created by the build process. build-tasks in many cases generate artifacts, in this case, the compiler generates dists
files and write them on the isolated capsules. There artifacts files are used later for example when creating packages.
#
PipelinesThere are three pipelines: build
, tag
and snap
.
bit build
runs the build pipeline.bit tag
runs the build pipeline and then the tag pipeline.bit snap
runs the build pipeline and then the snap pipeline.
#
List Build TasksTo get a list of all the tasks that will be running per pipeline on a specific component, run bit build --list-tasks <id>
.
Here is an example of the relevant part from the output:
โ bit build --list-tasks ui/tooltipTasks Listid: teambit.design/ui/tooltip@0.0.347envId: teambit.react/react
Build Pipeline Tasks:teambit.harmony/aspect:CoreExporterteambit.compilation/compiler:TSCompilerteambit.defender/tester:TestComponentsteambit.pkg/pkg:PreparePackagesteambit.pkg/pkg:PublishDryRunteambit.preview/preview:GeneratePreview
Tag Pipeline Tasks:teambit.harmony/application:build_ui_applicationteambit.pkg/pkg:PublishComponents
Snap Pipeline Tasks:<N/A>
#
Implementing Build TasksThe BuildTask
interface is a good start to understand how to implement a new build-task.
When writing a build task, the Network
object is passed and it includes the seeders capsules, as well as the entire graph including the dependencies.
Keep in mind that the entire graph may contain components from other envs.
Some tasks, such as, compiling in typescript and bundling with Webpack, need the entire graph. Others, such as, Babel, need only the seeders. However, normally, the bundling is running after the compilation and it expects to have the dependencies compiled, so you might need the entire graph regardless.
#
Adding Tasks to a pipelineThere are two ways of adding tasks to the build pipeline.
getBuildPipe()
method of the env. (orgetTagPipe()
andgetSnapPipe()
)- registering to the slot via
builder.registerBuildTask()
. (orregisterTagTask()
andregisterSnapTask()
)
in the option #1, it's possible to determine the order. e.g. getBuildPipe() { return [taskA, taskB, taskC]; }
in the option #2, the register happens once the extension is loaded, so there is no way to put
one task before/after another task as of now.
#
Sequencing the build tasksThe Build Pipeline takes into consideration the following factors when deciding the order of which to execute each task:
- Location: A task can be executed either at the start or end of the build pipeline. This can be explicitly configured by the task itself.
- Dependencies: A task can depend on other tasks. That means, the dependencies must be completed successfully for all envs before this task starts. The dependencies are applicable inside a location and not across locations. This is configured by the task itself.
- An environment's list of build tasks: This is the array of tasks as it is defined by an environment
#
Executing the pipelinesCommands that trigger the build pipeline:
bit build
- runs the build pipeline on your local machine, for the entire workspace. The output data will not persist. - That is most often used for testing and debugging the build process.bit tag
- runs the tag pipeline in addition to the build pipeline, before creating a new component release version. The output data will persist.bit snap
- runs the snap pipeline in addition to the build pipeline. The output data will persist.
Build pipelines are determined by the environments in use. That means, in order to override the default pipeline, we need to create a new environment extension or modify an existing one.
The example task below, shown being used by a customized environment, prints out the component name of every component handled by it. In addition to that, the task returns the component name as custom metadata to be logged and/or stored in the component tagged version. See a demo project here.
Information returned by a build task will only persist if the build-pipeline was triggered by the 'hard-tag' command (
bit tag <component-id>
).
import { BuildTask, BuildContext, BuiltTaskResult, ComponentResult } from '@teambit/builder';
// A task is an implementation of 'BuildTask' provided by the 'builder' aspectexport class PrintCmpNameTask implements BuildTask { // The constructor leaves these properties up to the hands of the environment using this task constructor(readonly aspectId: string, readonly name: string) {}
// This is where the task logic is placed. It will be executed by the build pipeline async execute(context: BuildContext): Promise<BuiltTaskResult> { const componentsResults: ComponentResult[] = [];
// Go through every isolated component instance context.capsuleNetwork.seedersCapsules.forEach((capsule) => { console.log(`The current component name is: ${capsule.component.id.name}`);
componentsResults.push({ component: capsule.component, metadata: { customProp: capsule.component.id.name }, }); }); return { // An array of component objects, enriched with additional data produced by the task componentsResults, }; }}
import { EnvsMain, EnvsAspect } from '@teambit/envs';import { ReactAspect, ReactMain } from '@teambit/react';
// Import the taskimport { PrintCmpNameTask } from './print-cmp-name-task';
export class CustomReact { constructor(private react: ReactMain) {}
static dependencies: any = [EnvsAspect, ReactAspect];
static async provider([envs, react]: [EnvsMain, ReactMain]) { // Get the environment's default build pipeline const reactPipe = react.env.getBuildPipe();
// Add the custom task to the end of the build tasks sequence. // Provide the task with the component ID of the extension using it. // Provide the ask with a name. const tasks = [...reactPipe, new PrintCompTask('extensions/custom-react', 'PrintCmpNameTask')];
// Create a new environment by merging these configurations with the env's default ones const customReactEnv = react.compose([react.overrideBuildPipe(tasks)]);
// register the extension as an environment envs.registerEnv(customReactEnv); return new CustomReact(react); }}
#
Positioning a build task in the pipelineA build task is positioned in the build pipeline sequence either by overriding the entire customizable pipeline or, by registering it to a location in the pipeline using the designated builder slot.
#
Override the build pipeline sequenceThis methodology leaves the task completely agnostic as to its position in the build pipeline. Instead, the task position is determined by the environment using the getBuildPipe
Environment Handler.
The example above shows the React environment overrideBuildPipe
method being used to override its default pipeline. This method uses the getBuildPipe()
Environment Handler, internally.
#
Append to the start or end of the pipeline, in relation to other tasksThis methodology places the task at the start or end of the build pipeline sequence, and lists all other tasks needed to run successfully before it is executed.
Example:
import { BuildTask, BuildContext, BuiltTaskResult, ComponentResult } from '@teambit/builder';
export class PrintCmpNameTask implements BuildTask { constructor(readonly aspectId: string, readonly name: string) {}
// Place the task at the end of the build pipeline readonly location = 'end';
// Run this task only after the '@teambit/preview' task is completed successfully readonly dependencies = ['@teambit/preview'];
async execute(context: BuildContext): Promise<BuiltTaskResult> { const componentsResults: ComponentResult[] = []; context.capsuleNetwork.seedersCapsules.forEach((capsule) => { console.log(`The current component name is: ${capsule.component.id.name}`);
componentsResults.push({ component: capsule.component, metadata: { customProp: capsule.component.id.name }, }); }); return { componentsResults, }; }}
import { EnvsMain, EnvsAspect } from '@teambit/envs';import { ReactAspect, ReactMain } from '@teambit/react';import { BuilderMain } from '@teambit/builder';
// Import the task (in reality, it should be an independent component)import { PrintCmpNameTask } from './print-cmp-name-task';
export class CustomReact { constructor(private react: ReactMain) {}
static dependencies: any = [EnvsAspect, ReactAspect];
// Inject the builder static async provider([envs, react, builder]: [EnvsMain, ReactMain, BuilderMain]) { // Register this task using the registration slot, made available by the 'builder'. // Here, the environment has no say in the positioning of the task builder.registerBuildTasks([new ExampleTask('extensions/custom-react', 'PrintCmpNameTask')]);
const customReactEnv = react.compose([]);
envs.registerEnv(customReactEnv); return new CustomReact(react); }}
#
A build task anatomyaspectId
aspectId: string
The component ID of the environment using this task.name
name: string
A name for this task. Only alphanumerical characters are allowed. PascalCase should be used as a convention.location
location?: 'start' | 'end'
The section of the build-pipeline to which to append this task.dependencies
dependencies?: string[]
An list of tasks that must be completed before this task gets executed.
For exampledependencies = ['@teambit/preview']
.execute
execute(context: BuildContext): Promise<BuiltTaskResult>
The execute method is where all the task logic is placed.context (argument)
context: BuildContext
The context of the build pipeline. Use this object (provided by the build pipeline) to get information regarding all components handled by the build pipeline.
For example,context.capsuleNetwork.seedersCapsules
are models representing isolated instances of components handled by the build pipeline. These isolated instances are independent projects, generated in your local filesystem (by the build pipeline).return
Promise<BuiltTaskResult>
Acontext
method returns an object with data regarding the build task process, additional data regarding the components handled by the task and, if available, data regarding the different artifacts generated by this task.
The returned object has the following attributes:componentsResults
componentsResults: ComponentResult[]
An array of objects, each containing an instance of an object handled the task and additional information regarding the process and the component itself.component
component: Component
An instance of the component handled by the task (see the above task example).metadata
metadata?: { [key: string]: Serializable }
Component metadata generated during the build task.errors
errors?: Array<Error | string>
Build task errors. A task returning errors will abort the build pipeline and log the returned errors.warnings
warnings?: string[]
warnings generated throughout the build task.startTime
startTime?: number
A timestamp (in milliseconds) of when the task startedendTime
endTime?: number
A timestamp (in milliseconds) of when the task endedartifacts
artifacts?: ArtifactDefinition[]
An array of artifact definitions to generate after a successful buildname
name: string
The name of the artifact.
For example, a project might utilize two different artifacts for the same typescript compiler, one that generates ES5 files and another for ES6. This prop helps to distinguish between the two.generatedBy
generatedBy?: string;
Id of the component that generated this artifact.description
description?: string
A description of the artifact.globPatterns
globPatterns: string[]
Glob patterns of files to include upon artifact creation. Minimatch is used to match the patterns.
For example,['*.ts', '!foo.ts']
matches all ts files but ignoresfoo.ts
.rootDir
rootDir?: string
Defines the root directory of the artifacts in the capsule file system. The rootDir must be unique for every artifact, otherwise data might be overridden.dirPrefix
dirPrefix?: string
Adds a directory prefix for all artifact files.context
context?: 'component' | 'env'
Determine the context of the artifact. The default artifact context iscomponent
.env
is useful when the same file is generated for all components, for example, a "preview" task may create the same webpack file for all components of that env.storageResolver
storageResolver?: string
Used to replace the location of the stored artifacts. The default resolver persists artifacts on scope (that's not recommended for large files).
preBuild (advanced)
preBuild?(context: BuildContext): Promise<void>
Runs before the build pipeline has started. This method should only be used when preparations are needed to be done on all environments before the build starts.postBuild (advanced)
postBuild?(context: BuildContext, tasksResults: TaskResultsList): Promise<void>
Runs after the dependencies were completed for all environments.