17.3.2 • Published 3 days ago

@angular-devkit/core v17.3.2

Weekly downloads
4,816,880
License
MIT
Repository
github
Last release
3 days ago

Core

Shared utilities for Angular DevKit.

Exception

Json

Schema

SchemaValidatorResult

export interface SchemaValidatorResult {
  success: boolean;
  errors?: string[];
}

SchemaValidator

export interface SchemaValidator {
  (data: any): Observable<SchemaValidatorResult>;
}

SchemaFormatter

export interface SchemaFormatter {
  readonly async: boolean;
  validate(data: any): boolean | Observable<boolean>;
}

SchemaRegistry

export interface SchemaRegistry {
  compile(schema: Object): Observable<SchemaValidator>;
  addFormat(name: string, formatter: SchemaFormatter): void;
}

CoreSchemaRegistry

SchemaRegistry implementation using https://github.com/epoberezkin/ajv. Constructor accepts object containing SchemaFormatter that will be added automatically.

export class CoreSchemaRegistry implements SchemaRegistry {
  constructor(formats: { [name: string]: SchemaFormatter} = {}) {}
}

Logger

Utils

Virtual FS

Workspaces

The workspaces namespace provides an API for interacting with the workspace file formats. It provides an abstraction of the underlying storage format of the workspace and provides support for both reading and writing. Currently, the only supported format is the JSON-based format used by the Angular CLI. For this format, the API provides internal change tracking of values which enables fine-grained updates to the underlying storage of the workspace. This allows for the retention of existing formatting and comments.

A workspace is defined via the following object model. Definition collection objects are specialized Javascript Map objects with an additional add method to simplify addition and provide more localized error checking of the newly added values.

export interface WorkspaceDefinition {
  readonly extensions: Record<string, JsonValue | undefined>;
  readonly projects: ProjectDefinitionCollection;
}

export interface ProjectDefinition {
  readonly extensions: Record<string, JsonValue | undefined>;
  readonly targets: TargetDefinitionCollection;
  root: string;
  prefix?: string;
  sourceRoot?: string;
}

export interface TargetDefinition {
  options?: Record<string, JsonValue | undefined>;
  configurations?: Record<string, Record<string, JsonValue | undefined> | undefined>;
  builder: string;
}

The API is asynchronous and has two main functions to facilitate reading, creation, and modifying a workspace: readWorkspace and writeWorkspace.

export enum WorkspaceFormat {
  JSON,
}
export function readWorkspace(
  path: string,
  host: WorkspaceHost,
  format?: WorkspaceFormat,
): Promise<{ workspace: WorkspaceDefinition }>;
export function writeWorkspace(
  workspace: WorkspaceDefinition,
  host: WorkspaceHost,
  path?: string,
  format?: WorkspaceFormat,
): Promise<void>;

A WorkspaceHost abstracts the underlying data access methods from the functions. It provides methods to read, write, and analyze paths. A utility function is provided to create an instance of a WorkspaceHost from the Angular DevKit's virtual filesystem host abstraction.

export interface WorkspaceHost {
  readFile(path: string): Promise<string>;
  writeFile(path: string, data: string): Promise<void>;
  isDirectory(path: string): Promise<boolean>;
  isFile(path: string): Promise<boolean>;
}

export function createWorkspaceHost(host: virtualFs.Host): WorkspaceHost;

Usage Example

To demonstrate the usage of the API, the following code will show how to add a option property to a build target for an application.

import { NodeJsSyncHost } from '@angular-devkit/core/node';
import { workspaces } from '@angular-devkit/core';

async function demonstrate() {
  const host = workspaces.createWorkspaceHost(new NodeJsSyncHost());
  const { workspace } = await workspaces.readWorkspace('path/to/workspace/directory/', host);

  const project = workspace.projects.get('my-app');
  if (!project) {
    throw new Error('my-app does not exist');
  }

  const buildTarget = project.targets.get('build');
  if (!buildTarget) {
    throw new Error('build target does not exist');
  }

  buildTarget.options.optimization = true;

  await workspaces.writeWorkspace(workspace, host);
}

demonstrate();
@angular-devkit/architect@angular-devkit/schematics@schematics/angular@schematics/update@angular-devkit/build-angular@angular/cli@wec360/schematicsyunzai@angular-buddies/build-notes@angular-buddies/prettier@atarek/octo-ng-schematics@mace/ng-admin@mace/prettier-schematics@slp/ng-admin@jhuaraya/schematics@nxpm-playground/schematicsapp-architect-for-appsyncbrcap-schematics@case-app/schematicshq-schematicskanzhucai-nest-cli@chebandoneon/componentriyenzfdlfkdlk-schematicslksgllskgls-flskgldlux-components-generatesg-cafenx-electron-testng-mvp@ruslanguns/schematicsng-module-addtailwind-schematicnx-gatsby-builder@goldenapple/clikronos-uilimber-projectpt-reusables-schematicsmart-sense-clicex-shema@tcsyyj/bithumb-page@serverpanel/angularc384c38423no-way-84sim84@whisk/build-angularangy-84angyy-84hahah2generator-sesame@vicoders/cli-suppoprtlcars-schematicsngx-config-splitternitor-firebase-login-testonenitor-sample-highcharts-testnitor-sample-highcharts-test10nitor-sample-highcharts-test2nitor-sample-highcharts-test3nitor-sample-highcharts-test4nitor-sample-highcharts-test5nitor-sample-highcharts-test6nitor-sample-highcharts-test7nitor-sample-highcharts-test8nitor-sample-highcharts-test9nitor-sample-testchartnitor-sample-testcharttwonitor-custom-login-test-twozschematicsshallow-render-schematic@dry-stack/schematicsrest-mariadbdashboard-shared@asap-dev/api-schematics-test121342b@nodesoccoop/angular-ncr-srcsng-ce-schematicsfacade-pattern@ts4/nestng-codeffekt-cliresscnewressc@darpankumar80/demo-schematics@ng-ally/schematics@volo/abp.ng.suite@alvesthiago/clean-clirelease-tracker-lib@flkslkfs/schematics@microf()/schematicsmicrofunction-schematics@afunworm/bootstrapx@topechelon/bb-schematics@zjayers/schematics@xcentium/jss-angular-kitngx-gallery-image-videongx-gallery-img-videongx-gallery-imges-video@lgm-clic/clic-schematicssamurai-cli@evenardo/schematics-nestjsws-modelo
17.3.2

3 days ago

15.2.11

3 days ago

16.2.13

3 days ago

18.0.0-next.0

7 days ago

17.3.1

8 days ago

17.3.0

15 days ago

17.3.0-rc.0

22 days ago

17.2.3

22 days ago

17.2.2

29 days ago

17.2.1

1 month ago

17.1.4

1 month ago

17.2.0

1 month ago

17.1.3

2 months ago

17.2.0-rc.0

2 months ago

17.1.2

2 months ago

17.2.0-next.1

2 months ago

17.2.0-next.0

2 months ago

17.1.1

2 months ago

16.2.12

2 months ago

17.1.0

2 months ago

17.0.10

3 months ago

17.1.0-rc.1

3 months ago

17.1.0-rc.0

3 months ago

17.0.9

3 months ago

17.1.0-next.3

3 months ago

16.2.11

3 months ago

17.0.8

3 months ago

17.1.0-next.2

4 months ago

17.0.7

4 months ago

17.1.0-next.1

4 months ago

17.0.6

4 months ago

17.1.0-next.0

4 months ago

17.0.3

4 months ago

17.0.5

4 months ago

17.0.4

4 months ago

17.0.0-rc.5

5 months ago

17.0.0-rc.4

5 months ago

16.2.10

5 months ago

17.0.2

4 months ago

17.0.1

4 months ago

17.0.0

5 months ago

17.0.0-rc.1

5 months ago

17.0.0-rc.3

5 months ago

17.0.0-rc.2

5 months ago

16.2.8

5 months ago

16.2.9

5 months ago

15.2.10

6 months ago

16.2.0-next.2

9 months ago

16.2.0-next.1

9 months ago

16.2.0-next.4

8 months ago

16.2.0-next.3

8 months ago

16.2.0-next.0

9 months ago

16.2.0-rc.1

8 months ago

16.2.0-rc.0

8 months ago

17.0.0-rc.0

5 months ago

17.0.0-next.3

7 months ago

17.0.0-next.0

7 months ago

17.0.0-next.6

6 months ago

17.0.0-next.7

6 months ago

17.0.0-next.4

7 months ago

17.0.0-next.5

6 months ago

14.2.13

6 months ago

14.2.12

9 months ago

16.1.8

8 months ago

16.1.7

8 months ago

16.1.6

8 months ago

16.1.5

8 months ago

16.1.4

9 months ago

16.1.3

9 months ago

16.1.2

9 months ago

16.2.7

5 months ago

16.2.6

6 months ago

16.2.5

6 months ago

17.0.0-next.8

6 months ago

17.0.0-next.9

6 months ago

16.2.0

8 months ago

16.2.4

6 months ago

16.2.3

6 months ago

16.2.2

7 months ago

16.2.1

7 months ago

15.2.9

9 months ago

16.1.0-next.2

10 months ago

16.1.0-rc.0

10 months ago

16.1.1

9 months ago

16.1.0

10 months ago

16.0.6

10 months ago

16.0.5

10 months ago

16.0.4

10 months ago

16.0.0-rc.0

12 months ago

16.0.0-rc.1

11 months ago

16.0.0-rc.2

11 months ago

16.0.0-rc.3

11 months ago

16.0.0-rc.4

11 months ago

16.1.0-next.0

11 months ago

16.1.0-next.1

10 months ago

15.2.8

11 months ago

15.2.6

12 months ago

15.2.7

11 months ago

16.0.2

11 months ago

16.0.1

11 months ago

16.0.0

11 months ago

16.0.3

10 months ago

16.0.0-next.7

12 months ago

15.2.5

12 months ago

15.2.0-rc.0

1 year ago

13.3.11

1 year ago

15.2.0-next.4

1 year ago

16.0.0-next.3

1 year ago

16.0.0-next.4

1 year ago

16.0.0-next.5

1 year ago

16.0.0-next.6

12 months ago

16.0.0-next.0

1 year ago

16.0.0-next.1

1 year ago

16.0.0-next.2

1 year ago

14.2.11

1 year ago

15.1.5

1 year ago

15.1.6

1 year ago

15.2.0

1 year ago

15.2.1

1 year ago

15.2.4

1 year ago

15.2.2

1 year ago

15.2.3

1 year ago

15.1.0-rc.0

1 year ago

15.2.0-next.2

1 year ago

15.2.0-next.3

1 year ago

15.2.0-next.0

1 year ago

15.2.0-next.1

1 year ago

15.0.5

1 year ago

15.1.1

1 year ago

15.1.2

1 year ago

15.1.0

1 year ago

15.1.3

1 year ago

15.1.4

1 year ago

13.3.10

1 year ago

14.2.7

1 year ago

14.2.8

1 year ago

14.2.9

1 year ago

15.0.2

1 year ago

15.0.3

1 year ago

15.0.0

1 year ago

15.0.1

1 year ago

15.0.4

1 year ago

14.2.6

1 year ago

14.2.10

1 year ago

15.1.0-next.3

1 year ago

15.1.0-next.0

1 year ago

15.1.0-next.1

1 year ago

15.1.0-next.2

1 year ago

15.0.0-next.6

1 year ago

15.0.0-rc.2

1 year ago

15.0.0-rc.3

1 year ago

15.0.0-rc.0

1 year ago

15.0.0-rc.1

1 year ago

15.0.0-rc.4

1 year ago

15.0.0-rc.5

1 year ago

15.0.0-next.5

1 year ago

14.2.4

1 year ago

14.2.5

1 year ago

15.0.0-next.3

1 year ago

15.0.0-next.4

1 year ago

14.1.3

2 years ago

14.2.0

2 years ago

14.2.1

2 years ago

14.2.2

2 years ago

14.2.3

2 years ago

14.2.0-rc.0

2 years ago

15.0.0-next.2

2 years ago

15.0.0-next.1

2 years ago

15.0.0-next.0

2 years ago

14.2.0-next.2

2 years ago

14.1.0-next.3

2 years ago

14.1.0-next.2

2 years ago

14.1.0-next.4

2 years ago

14.1.0-next.1

2 years ago

14.1.0-next.0

2 years ago

14.1.0-rc.3

2 years ago

13.3.9

2 years ago

13.3.7

2 years ago

13.3.8

2 years ago

14.1.0

2 years ago

14.1.1

2 years ago

14.1.2

2 years ago

14.0.0-rc.2

2 years ago

14.0.0-rc.3

2 years ago

14.0.0

2 years ago

14.0.1

2 years ago

14.0.2

2 years ago

14.0.3

2 years ago

14.0.4

2 years ago

14.0.5

2 years ago

14.0.6

2 years ago

14.0.7

2 years ago

12.2.18

2 years ago

14.2.0-next.0

2 years ago

14.2.0-next.1

2 years ago

14.0.0-next.12

2 years ago

14.0.0-next.13

2 years ago

13.3.5

2 years ago

13.3.6

2 years ago

13.3.4

2 years ago

14.0.0-rc.1

2 years ago

14.0.0-rc.0

2 years ago

14.0.0-next.10

2 years ago

14.0.0-next.11

2 years ago

14.0.0-next.9

2 years ago

14.0.0-next.8

2 years ago

14.0.0-next.7

2 years ago

14.0.0-next.6

2 years ago

14.0.0-next.5

2 years ago

11.2.19

2 years ago

13.3.3

2 years ago

13.3.1

2 years ago

13.3.2

2 years ago

13.3.0

2 years ago

13.2.6

2 years ago

12.2.17

2 years ago

14.0.0-next.4

2 years ago

10.2.4

2 years ago

13.1.0-rc.0

2 years ago

13.2.0-next.2

2 years ago

13.2.0-next.0

2 years ago

13.2.0-next.1

2 years ago

14.0.0-next.3

2 years ago

14.0.0-next.2

2 years ago

14.0.0-next.1

2 years ago

14.0.0-next.0

2 years ago

11.2.18

2 years ago

11.2.17

2 years ago

11.2.16

2 years ago

13.1.3

2 years ago

13.1.4

2 years ago

13.1.1

2 years ago

13.1.2

2 years ago

13.1.0

2 years ago

13.2.4

2 years ago

13.2.5

2 years ago

13.2.2

2 years ago

13.2.3

2 years ago

13.2.0

2 years ago

13.2.1

2 years ago

12.2.14

2 years ago

12.2.15

2 years ago

12.2.16

2 years ago

13.2.0-rc.0

2 years ago

13.2.0-rc.1

2 years ago

13.1.0-next.3

2 years ago

13.1.0-next.2

2 years ago

13.1.0-next.1

2 years ago

13.0.4

2 years ago

13.0.2

2 years ago

13.0.3

2 years ago

13.1.0-next.0

2 years ago

13.0.0

2 years ago

13.0.1

2 years ago

11.2.15

2 years ago

13.0.0-rc.3

2 years ago

13.0.0-rc.2

2 years ago

12.2.12

2 years ago

12.2.13

2 years ago

12.2.9

2 years ago

13.0.0-rc.1

2 years ago

13.0.0-rc.0

2 years ago

13.0.0-next.9

2 years ago

13.0.0-next.8

2 years ago

12.2.10

2 years ago

12.2.11

2 years ago

12.2.8

2 years ago

13.0.0-next.7

2 years ago

12.2.7

3 years ago

13.0.0-next.6

3 years ago

12.2.6

3 years ago

13.0.0-next.5

3 years ago

12.2.5

3 years ago

13.0.0-next.4

3 years ago

12.2.4

3 years ago

13.0.0-next.3

3 years ago

12.2.3

3 years ago

13.0.0-next.2

3 years ago

12.2.2

3 years ago

13.0.0-next.1

3 years ago

12.2.1

3 years ago

13.0.0-next.0

3 years ago

12.2.0

3 years ago

12.2.0-rc.0

3 years ago

12.1.4

3 years ago

12.2.0-next.3

3 years ago

12.1.3

3 years ago

12.2.0-next.2

3 years ago

12.1.2

3 years ago

12.1.1

3 years ago

12.2.0-next.0

3 years ago

12.1.0

3 years ago

12.0.5

3 years ago

12.1.0-next.6

3 years ago

12.0.4

3 years ago

12.1.0-next.5

3 years ago

11.2.14

3 years ago

12.0.3

3 years ago

12.1.0-next.4

3 years ago

12.0.2

3 years ago

12.1.0-next.3

3 years ago

12.0.0

3 years ago

12.0.1

3 years ago

11.2.13

3 years ago

12.0.0-rc.3

3 years ago

12.1.0-next.2

3 years ago

11.2.12

3 years ago

11.2.11

3 years ago

12.0.0-rc.1

3 years ago

12.0.0-rc.2

3 years ago

12.0.0-rc.0

3 years ago

11.2.10

3 years ago

12.0.0-next.9

3 years ago

11.2.9

3 years ago

12.0.0-next.8

3 years ago

11.2.8

3 years ago

12.0.0-next.7

3 years ago

11.2.7

3 years ago

12.0.0-next.6

3 years ago

11.2.6

3 years ago

12.0.0-next.5

3 years ago

11.2.5

3 years ago

12.0.0-next.4

3 years ago

11.2.4

3 years ago

12.0.0-next.3

3 years ago

11.2.3

3 years ago

9.1.15

3 years ago

10.2.3

3 years ago

12.0.0-next.2

3 years ago

11.2.2

3 years ago

12.0.0-next.1

3 years ago

11.2.1

3 years ago

12.0.0-next.0

3 years ago

11.2.0

3 years ago

9.1.14

3 years ago

10.2.2

3 years ago

11.1.4

3 years ago

11.2.0-rc.1

3 years ago

11.1.3

3 years ago

11.2.0-rc.0

3 years ago

11.2.0-next.0

3 years ago

11.1.2

3 years ago

11.1.1

3 years ago

11.1.0

3 years ago

11.1.0-rc.0

3 years ago

11.0.7

3 years ago

11.0.6

3 years ago

11.1.0-next.4

3 years ago

10.2.1

3 years ago

9.1.13

3 years ago

11.0.5

3 years ago

11.1.0-next.3

3 years ago

11.0.4

3 years ago

11.1.0-next.2

3 years ago

11.0.3

3 years ago

11.1.0-next.1

3 years ago

11.0.2

3 years ago

11.1.0-next.0

3 years ago

11.0.1

3 years ago

11.0.0

3 years ago

11.0.0-rc.3

3 years ago

11.0.0-rc.2

3 years ago

11.0.0-rc.1

3 years ago

11.0.0-rc.0

3 years ago

10.2.0

3 years ago

10.1.7

3 years ago

11.0.0-next.7

3 years ago

11.0.0-next.6

3 years ago

11.0.0-next.5

3 years ago

10.1.6

3 years ago

10.1.5

3 years ago

11.0.0-next.4

3 years ago

10.1.4

3 years ago

11.0.0-next.3

4 years ago

10.1.3

4 years ago

10.1.2

4 years ago

11.0.0-next.2

4 years ago

10.1.1

4 years ago

11.0.0-next.1

4 years ago

11.0.0-next.0

4 years ago

10.1.0

4 years ago

10.0.8

4 years ago

10.1.0-rc.0

4 years ago

10.1.0-next.7

4 years ago

10.0.7

4 years ago

10.1.0-next.6

4 years ago

10.0.6

4 years ago

10.1.0-next.5

4 years ago

10.1.0-next.4

4 years ago

10.1.0-next.3

4 years ago

10.0.5

4 years ago

8.3.29

4 years ago

10.0.4

4 years ago

10.1.0-next.2

4 years ago

9.1.12

4 years ago

10.0.3

4 years ago

10.1.0-next.1

4 years ago

9.1.11

4 years ago

10.0.2

4 years ago

10.1.0-next.0

4 years ago

9.1.10

4 years ago

10.0.1

4 years ago

10.0.0

4 years ago

8.3.28

4 years ago

9.1.9

4 years ago

10.0.0-rc.4

4 years ago

10.0.0-rc.5

4 years ago

8.3.27

4 years ago

9.1.8

4 years ago

10.0.0-rc.3

4 years ago

10.0.0-rc.2

4 years ago

9.1.7

4 years ago

10.0.0-rc.0

4 years ago

10.0.0-next.6

4 years ago

9.1.6

4 years ago

10.0.0-next.5

4 years ago

9.1.5

4 years ago

10.0.0-next.4

4 years ago

9.1.4

4 years ago

10.0.0-next.3

4 years ago

9.1.3

4 years ago

10.0.0-next.2

4 years ago

9.1.2

4 years ago

10.0.0-next.1

4 years ago

10.0.0-next.0

4 years ago

9.1.1

4 years ago

8.3.26

4 years ago

7.3.10

4 years ago

9.1.0

4 years ago

9.1.0-rc.0

4 years ago

9.0.7

4 years ago

9.1.0-next.4

4 years ago

9.0.6

4 years ago

9.1.0-next.3

4 years ago

9.0.5

4 years ago

9.1.0-next.2

4 years ago

9.0.4

4 years ago

9.1.0-next.1

4 years ago

9.1.0-next.0

4 years ago

9.0.3

4 years ago

9.0.2

4 years ago

9.0.1

4 years ago

9.0.0

4 years ago

8.3.25

4 years ago

9.0.0-rc.14

4 years ago

9.0.0-rc.13

4 years ago

8.3.24

4 years ago

9.0.0-rc.12

4 years ago

9.0.0-rc.11

4 years ago

9.0.0-rc.10

4 years ago

8.3.23

4 years ago

9.0.0-rc.9

4 years ago

8.3.22

4 years ago

9.0.0-rc.8

4 years ago

8.3.21

4 years ago

9.0.0-rc.7

4 years ago

9.0.0-rc.6

4 years ago

9.0.0-rc.5

4 years ago

8.3.20

4 years ago

9.0.0-rc.4

4 years ago

9.0.0-rc.3

4 years ago

9.0.0-rc.2

4 years ago

8.3.19

4 years ago

8.3.18

4 years ago

9.0.0-rc.1

4 years ago

9.0.0-rc.0

4 years ago

8.3.17

4 years ago

9.0.0-next.19

4 years ago

8.3.16

4 years ago

9.0.0-next.18

4 years ago

9.0.0-next.17

4 years ago

8.3.15

4 years ago

9.0.0-next.16

4 years ago

9.0.0-next.15

4 years ago

8.3.14

4 years ago

9.0.0-next.14

4 years ago

8.3.13

4 years ago

9.0.0-next.13

4 years ago

8.3.12

4 years ago

9.0.0-next.12

4 years ago

9.0.0-next.11

4 years ago

8.3.10

4 years ago

9.0.0-next.10

4 years ago

8.3.9

4 years ago

9.0.0-next.9

4 years ago

9.0.0-next.8

4 years ago

8.3.8

4 years ago

9.0.0-next.7

4 years ago

8.3.7

4 years ago

9.0.0-next.6

5 years ago

8.3.6

5 years ago

8.3.5

5 years ago

9.0.0-next.5

5 years ago

8.3.4

5 years ago

9.0.0-next.4

5 years ago

9.0.0-next.3

5 years ago

8.3.3

5 years ago

9.0.0-next.2

5 years ago

8.3.2

5 years ago

8.3.1

5 years ago

9.0.0-next.1

5 years ago

9.0.0-next.0

5 years ago

8.3.0

5 years ago

8.3.0-rc.0

5 years ago

8.2.2

5 years ago

8.3.0-next.2

5 years ago

8.3.0-next.1

5 years ago

8.2.1

5 years ago

8.2.0

5 years ago

8.3.0-next.0

5 years ago

8.1.3

5 years ago

8.2.0-rc.0

5 years ago

8.2.0-next.1

5 years ago

8.1.2

5 years ago

8.2.0-next.0

5 years ago

8.1.1

5 years ago

8.1.0

5 years ago

8.0.6

5 years ago

8.0.5

5 years ago

8.1.0-rc.0

5 years ago

8.1.0-beta.3

5 years ago

8.0.4

5 years ago

8.1.0-beta.2

5 years ago

8.1.0-beta.1

5 years ago

8.1.0-beta.0

5 years ago

8.0.3

5 years ago

8.0.2

5 years ago

8.0.1

5 years ago

8.0.0

5 years ago

8.0.0-rc.4

5 years ago

8.0.0-rc.3

5 years ago

7.3.9

5 years ago

8.0.0-rc.2

5 years ago

8.0.0-rc.1

5 years ago

8.0.0-rc.0

5 years ago

8.0.0-beta.18

5 years ago

8.0.0-beta.17

5 years ago

8.0.0-beta.16

5 years ago

8.0.0-beta.15

5 years ago

8.0.0-beta.14

5 years ago

8.0.0-beta.13

5 years ago

8.0.0-beta.12

5 years ago

8.0.0-beta.11

5 years ago

7.3.8

5 years ago

8.0.0-beta.10

5 years ago

7.3.7

5 years ago

8.0.0-beta.9

5 years ago

8.0.0-beta.8

5 years ago

8.0.0-beta.7

5 years ago

7.3.6

5 years ago

8.0.0-beta.6

5 years ago

7.3.5

5 years ago

8.0.0-beta.5

5 years ago

7.3.4

5 years ago

8.0.0-beta.4

5 years ago

8.0.0-beta.2

5 years ago

7.3.3

5 years ago

8.0.0-beta.1

5 years ago

7.3.2

5 years ago

7.3.1

5 years ago

8.0.0-beta.0

5 years ago

7.3.0

5 years ago

7.2.4

5 years ago

7.3.0-rc.0

5 years ago

7.2.3

5 years ago

7.2.2

5 years ago

7.3.0-beta.0

5 years ago

7.2.1

5 years ago

7.2.0

5 years ago

0.8.9

5 years ago

7.2.0-rc.0

5 years ago

7.1.4

5 years ago

7.2.0-beta.2

5 years ago

7.1.3

5 years ago

7.2.0-beta.1

5 years ago

7.1.2

5 years ago

7.1.1

5 years ago

7.2.0-beta.0

5 years ago

0.8.8

5 years ago

7.1.0

5 years ago

7.0.7

5 years ago

7.1.0-rc.0

5 years ago

7.0.6

5 years ago

7.0.5

5 years ago

7.1.0-beta.1

5 years ago

0.8.7

5 years ago

7.1.0-beta.0

5 years ago

7.0.4

5 years ago

7.0.3

5 years ago

0.8.6

5 years ago

7.0.2

5 years ago

7.0.1

5 years ago

7.0.0

5 years ago

0.8.5

5 years ago

7.0.0-rc.3

5 years ago

7.0.0-rc.2

5 years ago

7.0.0-rc.1

5 years ago

0.8.4

5 years ago

0.6.0-rc.0

5 years ago

7.0.0-rc.0

5 years ago

7.0.0-beta.4

6 years ago

0.8.3

6 years ago

0.9.0-beta.3

6 years ago

0.8.2

6 years ago

0.9.0-beta.2

6 years ago

0.9.0-beta.1

6 years ago

0.9.0-beta.0

6 years ago

0.8.1

6 years ago

0.8.0

6 years ago

0.8.0-rc.1

6 years ago

0.8.0-rc.0

6 years ago

0.7.5

6 years ago

0.7.4

6 years ago

0.8.0-beta.3

6 years ago

0.8.0-beta.2

6 years ago

0.7.3

6 years ago

0.8.0-beta.1

6 years ago

0.8.0-beta.0

6 years ago

0.7.2

6 years ago

0.7.1

6 years ago

0.7.0

6 years ago

0.7.0-rc.3

6 years ago

0.7.0-rc.2

6 years ago

0.7.0-rc.1

6 years ago

0.7.0-rc.0

6 years ago

0.7.0-beta.2

6 years ago

0.6.8

6 years ago

0.7.0-beta.1

6 years ago

0.7.0-beta.0

6 years ago

0.6.7

6 years ago

0.6.6

6 years ago

0.6.5

6 years ago

0.6.4

6 years ago

0.6.3

6 years ago

0.6.2

6 years ago

0.6.1

6 years ago

0.6.0

6 years ago

0.5.13

6 years ago

0.5.12

6 years ago

0.5.11

6 years ago

0.5.10

6 years ago

0.5.9

6 years ago

0.5.8

6 years ago

0.5.7

6 years ago

0.5.6

6 years ago

0.5.5

6 years ago

0.5.4

6 years ago

0.5.3

6 years ago

0.5.2

6 years ago

0.5.1

6 years ago

0.5.0

6 years ago

0.4.9

6 years ago

0.4.8

6 years ago

0.4.7

6 years ago

0.4.6

6 years ago

0.4.5

6 years ago

0.4.4

6 years ago

0.4.3

6 years ago

0.4.2

6 years ago

0.4.1

6 years ago

0.3.2

6 years ago

0.4.0

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.0

6 years ago

0.0.29

6 years ago

0.0.28

6 years ago

0.0.27

6 years ago

0.0.26

6 years ago

0.0.25

6 years ago

0.0.24

6 years ago

0.0.23

6 years ago

0.0.22

6 years ago

0.0.21

6 years ago

0.0.20

6 years ago

0.0.19

6 years ago

0.0.18

6 years ago

0.0.17

6 years ago

0.0.16

6 years ago

0.0.15

7 years ago

0.0.14

7 years ago

0.0.13

7 years ago

0.0.12

7 years ago

0.0.10

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago