1.43.1 • Published 6 months ago

@theia/cli v1.43.1

Weekly downloads
4,942
License
EPL-2.0 OR GPL-2....
Repository
github
Last release
6 months ago

Outline

Description

The @theia/cli package provides helpful scripts and commands for extension and application development. The contributed theia, is a command line tool to manage Theia-based applications.

Getting Started

Install @theia/cli as a dev dependency in your application.

With yarn:

yarn add @theia/cli@next --dev

With npm:

npm install @theia/cli@next --save-dev

Configure

A Theia-based application can be configured via the theia property as described in the application's package.json.

Application Properties

It is possible Application Properties for a given application.\ For example, an application can define it's applicationName using the following syntax:

"theia": {
    "frontend": {
      "config": {
        "applicationName": "Custom Application Name",
      }
    }
  },

Default Preferences

If required, an application can define for a given preference, the default value. For example, an application can update the preference value for files.enableTrash based on it's requirements:

"theia": {
    "frontend": {
      "config": {
        "preferences": {
          "files.enableTrash": false
        }
      }
    }
  },

Default Theme

Default color and icon themes can be configured in theia.frontend.config section:

"theia": {
    "frontend": {
      "config": {
        "defaultTheme": "light",
        "defaultIconTheme": "vs-seti"
      }
    }
  },

Build Target

The following targets are supported: browser and electron. By default browser target is used. The target can be configured in the package.json via theia/target property, e.g:

{
    "theia": {
        "target": "electron"
    },
    "dependencies": {
        "@theia/electron": "latest"
    }
}

For electron target applications, is it mandatory to include Electron runtime dependencies. The @theia/electron package is the easiest way to install the necessary dependencies.

Electron Frontend Application Config

The electron frontend application configuration provides configuration options for the electron target.\ The currently supported configurations are:

  • disallowReloadKeybinding: if set to true, reloading the current browser window won't be possible with the Ctrl/Cmd + r keybinding. It is false by default. Has no effect if not in an electron environment.
  • windowOptions: override or add properties to the electron windowOptions.
{
    "theia": {
        "target": "electron",
        "frontend": {
            "config": {
                "electron": {
                    "disallowReloadKeybinding": true,
                    "windowOptions": {
                        "titleBarStyle": "hidden",
                        "webPreferences": {
                            "webSecurity": false,
                            "nodeIntegration": true,
                            "webviewTag": true
                        }
                    }
                }
            }
        }
    }
}

Using Latest Builds

If you set next in your theia config, then Theia will prefer next over latest as the latest tag.

{
    "theia": {
        "next": "true"
    }
}

Building

Build

The following command can be used to build the application:

Development

theia build --mode development

Production

theia build

Watch

The following command can be used to rebuild the application on each change:

theia build --watch --mode development

Clean

The following command can be used to clean up the build result:

In order to clean up the build result:

theia clean

Arguments are passed directly to webpack. Use --help to learn which options are supported.

Rebuilding Native Modules

In order to run Electron targets, one should rebuild native node modules for an electron version:

theia rebuild

To rollback native modules, change the target to browser and run the command again.

Running

To run the backend server:

theia start

For the browser target a server is started on http://localhost:3000 by default. For the electron target a server is started on localhost host with the dynamically allocated port by default.

Arguments are passed directly to a server, use --help to learn which options are supported.

Debugging

To debug the backend server:

theia start --inspect

Theia CLI accepts --inspect node flag: https://nodejs.org/en/docs/inspector/#command-line-options.

Testing

Enabling Tests

First enable expose-loader in webpack.config.js to expose modules from bundled code to tests by un-commenting:

/**
 * Expose bundled modules on window.theia.moduleName namespace, e.g.
 * window['theia']['@theia/core/lib/common/uri'].
 * Such syntax can be used by external code, for instance, for testing.
config.module.rules.push({
    test: /\.js$/,
    loader: require.resolve('@theia/application-manager/lib/expose-loader')
}); */

After that run theia build again to expose modules in generated bundle files.

Writing Tests

See API Integration Testing docs.

Running Tests

To start the backend server and run API tests against it:

theia test

After running test this command terminates. It accepts the same arguments as start command, but as well additional arguments to specify test files, enable inspection or generate test coverage.

Configuring Tests

To specify test files:

theia test . --test-spec=./test/*.spec.js --plugins=./plugins

This command starts the application with a current directory as a workspace, load VS Code extensions from ./plugins and run test files matching ./test/*.spec.js glob.

Use theia test --help to learn more options. Test specific options start with --test-.

Inspecting Tests

To inspect tests:

theia test . --test-spec=./test/*.spec.js --test-inspect --inspect

This command starts the application server in the debug mode as well as open the Chrome devtools to debug frontend code and test files. One can reload/rerun code and tests by simply reloading the page.

Important! Since tests are relying on focus, while running tests keep the page focused.

Reporting Test Coverage

To report test coverage:

theia test . --test-spec=./test/*.spec.js --test-coverage

This command executes tests and generate test coverage files consumable by Istanbul.

Downloading Plugins

The @theia/cli package provides a utility for applications to define and download a list of plugins it requires as part of their application using the command:

theia download:plugins

This utility works by declaring in the package.json a location to store downloaded plugins, as well as defining each plugin the application wishes to download.

The property theiaPluginsDir describes the location of which to download plugins (relative to the package.json), for example:

"theiaPluginsDir": "plugins",

The property theiaPlugins describes the list of plugins to download, for example:

"theiaPlugins": {
    "vscode.theme-defaults": "https://open-vsx.org/api/vscode/theme-defaults/1.62.3/file/vscode.theme-defaults-1.62.3.vsix",
    "vscode-builtin-extension-pack": "https://open-vsx.org/api/eclipse-theia/builtin-extension-pack/1.50.0/file/eclipse-theia.builtin-extension-pack-1.50.0.vsix",
    "vscode-editorconfig": "https://open-vsx.org/api/EditorConfig/EditorConfig/0.14.4/file/EditorConfig.EditorConfig-0.14.4.vsix",
    "vscode-eslint": "https://open-vsx.org/api/dbaeumer/vscode-eslint/2.1.1/file/dbaeumer.vscode-eslint-2.1.1.vsix",
    "rust-analyzer": "https://open-vsx.org/api/rust-lang/rust-analyzer/${targetPlatform}/0.4.1473/file/rust-lang.rust-analyzer-0.4.1473@${targetPlatform}.vsix"
}

As seen in the rust-analyzer entry we can use placeholders in the URLs. Supported placeholders are:

  • The ${targetPlatform} Placeholder, which resolves to a string like win32-x64 describing the local system and architecture. This is useful for adding non-universal plugins.

Please note that in order to use extensionPacks properly you should use namespace.name as the id you give extensions so that when resolving the pack we do not re-download an existing plugin under a different name.

The property theiaPluginsExcludeIds can be used to declare the list of plugin ids to exclude when using extension-packs. The ids referenced by the property will not be downloaded when resolving extension-packs, and can be used to omit extensions which are problematic or unwanted. The format of the property is as follows:

"theiaPluginsExcludeIds": [
  "vscode.cpp"
]

Autogenerated Application

This package can auto-generate application code for both the backend and frontend, as well as webpack configuration files.

When targeting Electron, the electron-main.js script will spawn the backend process in a Node.js sub-process, where Electron's API won't be available. To prevent the generated application from forking the backend, you can pass a --no-cluster flag. This flag is mostly useful/used for debugging.

# when developing a Theia application with @theia/cli:
yarn theia start --no-cluster

# when starting a bundled application made using @theia/cli:
bundled-application.exe --no-cluster

Additional Information

License

Trademark

"Theia" is a trademark of the Eclipse Foundation https://www.eclipse.org/theia

1.40.0

9 months ago

1.40.1

8 months ago

1.43.1

6 months ago

1.43.0

6 months ago

1.39.0

10 months ago

1.41.0

8 months ago

1.42.0

7 months ago

1.42.1

7 months ago

1.39.0-next.20

11 months ago

1.39.0-next.18

11 months ago

1.39.0-next.19

11 months ago

1.39.0-next.16

11 months ago

1.39.0-next.14

11 months ago

1.39.0-next.12

11 months ago

1.39.0-next.13

11 months ago

1.39.0-next.11

11 months ago

1.38.0-next.7

12 months ago

1.38.0-next.5

12 months ago

1.39.0-next.7

11 months ago

1.39.0-next.8

11 months ago

1.39.0-next.9

11 months ago

1.39.0-next.4

11 months ago

1.39.0-next.5

11 months ago

1.39.0-next.6

11 months ago

1.39.0-next.1

11 months ago

1.39.0-next.2

11 months ago

1.37.1

12 months ago

1.37.2

11 months ago

1.38.0-next.40

11 months ago

1.38.0-next.44

11 months ago

1.38.0-next.45

11 months ago

1.38.0-next.43

11 months ago

1.38.0-next.32

11 months ago

1.38.0-next.38

11 months ago

1.38.0-next.27

12 months ago

1.38.0

11 months ago

1.37.0-next.16

1 year ago

1.37.0-next.15

1 year ago

1.37.0-next.14

1 year ago

1.37.0-next.13

1 year ago

1.37.0-next.12

1 year ago

1.37.0-next.19

1 year ago

1.37.0-next.18

1 year ago

1.37.0-next.22

1 year ago

1.37.0-next.21

1 year ago

1.37.0-next.29

1 year ago

1.37.0-next.30

1 year ago

1.38.0-next.0

1 year ago

1.37.0

1 year ago

1.37.0-next.11

1 year ago

1.37.0-next.10

1 year ago

1.37.0-next.0

1 year ago

1.37.0-next.9

1 year ago

1.37.0-next.8

1 year ago

1.37.0-next.7

1 year ago

1.37.0-next.6

1 year ago

1.37.0-next.5

1 year ago

1.37.0-next.4

1 year ago

1.37.0-next.3

1 year ago

1.37.0-next.1

1 year ago

1.36.0

1 year ago

1.34.3

1 year ago

1.34.4

1 year ago

1.36.0-next.51

1 year ago

1.36.0-next.40

1 year ago

1.36.0-next.41

1 year ago

1.36.0-next.42

1 year ago

1.36.0-next.43

1 year ago

1.36.0-next.44

1 year ago

1.36.0-next.45

1 year ago

1.36.0-next.46

1 year ago

1.36.0-next.47

1 year ago

1.36.0-next.30

1 year ago

1.36.0-next.31

1 year ago

1.36.0-next.32

1 year ago

1.36.0-next.37

1 year ago

1.36.0-next.38

1 year ago

1.36.0-next.39

1 year ago

1.36.0-next.33

1 year ago

1.36.0-next.34

1 year ago

1.36.0-next.35

1 year ago

1.36.0-next.21

1 year ago

1.36.0-next.26

1 year ago

1.36.0-next.27

1 year ago

1.36.0-next.28

1 year ago

1.36.0-next.29

1 year ago

1.36.0-next.22

1 year ago

1.36.0-next.23

1 year ago

1.34.2

1 year ago

1.35.0

1 year ago

1.34.1

1 year ago

1.33.0-next.25

1 year ago

1.33.0-next.20

1 year ago

1.33.0-next.24

1 year ago

1.33.0

1 year ago

1.34.0

1 year ago

1.34.0-next.7

1 year ago

1.34.0-next.39

1 year ago

1.34.0-next.31

1 year ago

1.34.0-next.34

1 year ago

1.34.0-next.19

1 year ago

1.33.0-next.9

1 year ago

1.33.0-next.8

1 year ago

1.31.0-next.7

2 years ago

1.29.2

1 year ago

1.32.0-next.17

1 year ago

1.32.0-next.16

1 year ago

1.32.0-next.14

1 year ago

1.32.0-next.12

1 year ago

1.32.0-next.36

1 year ago

1.32.0-next.31

1 year ago

1.32.0-next.32

1 year ago

1.32.0-next.28

1 year ago

1.32.0-next.29

1 year ago

1.32.0-next.24

1 year ago

1.32.0-next.25

1 year ago

1.32.0-next.23

1 year ago

1.32.0-next.20

1 year ago

1.32.0-next.21

1 year ago

1.32.0-next.50

1 year ago

1.32.0-next.48

1 year ago

1.32.0-next.49

1 year ago

1.32.0-next.47

1 year ago

1.32.0-next.44

1 year ago

1.32.0-next.43

1 year ago

1.31.0-next.11

2 years ago

1.31.0-next.15

2 years ago

1.31.0-next.14

2 years ago

1.31.0-next.13

2 years ago

1.31.0-next.19

2 years ago

1.31.0-next.18

2 years ago

1.31.0-next.17

2 years ago

1.31.0-next.33

2 years ago

1.31.0-next.32

2 years ago

1.31.0-next.34

2 years ago

1.31.0-next.29

2 years ago

1.31.1

1 year ago

1.31.0

2 years ago

1.32.0

1 year ago

1.33.0-next.2

1 year ago

1.33.0-next.1

1 year ago

1.33.0-next.4

1 year ago

1.33.0-next.3

1 year ago

1.33.0-next.0

1 year ago

1.33.0-next.5

1 year ago

1.32.0-next.8

1 year ago

1.32.0-next.5

1 year ago

1.32.0-next.3

1 year ago

1.32.0-next.0

2 years ago

1.31.0-next.3

2 years ago

1.31.0-next.0

2 years ago

1.31.0-next.1

2 years ago

1.31.0-next.2

2 years ago

1.30.0-next.42

2 years ago

1.30.0-next.43

2 years ago

1.30.0-next.44

2 years ago

1.30.0-next.45

2 years ago

1.30.0-next.48

2 years ago

1.30.0-next.40

2 years ago

1.29.0

2 years ago

1.29.1

2 years ago

1.30.0-next.10

2 years ago

1.30.0-next.13

2 years ago

1.30.0-next.14

2 years ago

1.30.0-next.15

2 years ago

1.30.0-next.16

2 years ago

1.30.0-next.17

2 years ago

1.30.0-next.18

2 years ago

1.30.0-next.19

2 years ago

1.30.0-next.20

2 years ago

1.30.0-next.21

2 years ago

1.30.0-next.22

2 years ago

1.30.0-next.23

2 years ago

1.30.0-next.24

2 years ago

1.30.0-next.25

2 years ago

1.30.0-next.27

2 years ago

1.30.0-next.28

2 years ago

1.30.0-next.29

2 years ago

1.30.0-next.31

2 years ago

1.30.0-next.32

2 years ago

1.30.0-next.33

2 years ago

1.30.0-next.34

2 years ago

1.30.0-next.36

2 years ago

1.30.0-next.38

2 years ago

1.30.0-next.30

2 years ago

1.30.0-next.39

2 years ago

1.30.0

2 years ago

1.29.0-next.50

2 years ago

1.29.0-next.51

2 years ago

1.29.0-next.46

2 years ago

1.29.0-next.44

2 years ago

1.29.0-next.42

2 years ago

1.30.0-next.1

2 years ago

1.30.0-next.0

2 years ago

1.30.0-next.3

2 years ago

1.30.0-next.2

2 years ago

1.30.0-next.4

2 years ago

1.30.0-next.7

2 years ago

1.30.0-next.8

2 years ago

1.29.0-next.41

2 years ago

1.29.0-next.39

2 years ago

1.29.0-next.37

2 years ago

1.29.0-next.36

2 years ago

1.29.0-next.35

2 years ago

1.29.0-next.34

2 years ago

1.28.0-next.1

2 years ago

1.28.0-next.2

2 years ago

1.28.0-next.0

2 years ago

1.28.0-next.5

2 years ago

1.28.0-next.3

2 years ago

1.28.0-next.9

2 years ago

1.28.0-next.7

2 years ago

1.28.0-next.8

2 years ago

1.29.0-next.1

2 years ago

1.29.0-next.2

2 years ago

1.29.0-next.4

2 years ago

1.29.0-next.7

2 years ago

1.29.0-next.6

2 years ago

1.29.0-next.9

2 years ago

1.27.0-next.43

2 years ago

1.27.0-next.42

2 years ago

1.27.0-next.45

2 years ago

1.27.0-next.44

2 years ago

1.27.0-next.46

2 years ago

1.27.0-next.49

2 years ago

1.27.0-next.48

2 years ago

1.27.0-next.41

2 years ago

1.27.0-next.39

2 years ago

1.27.0-next.31

2 years ago

1.27.0-next.34

2 years ago

1.27.0-next.36

2 years ago

1.27.0-next.35

2 years ago

1.27.0-next.37

2 years ago

1.27.0-next.30

2 years ago

1.27.0-next.76

2 years ago

1.27.0-next.78

2 years ago

1.27.0-next.77

2 years ago

1.27.0-next.79

2 years ago

1.27.0-next.70

2 years ago

1.27.0-next.72

2 years ago

1.27.0-next.71

2 years ago

1.27.0-next.74

2 years ago

1.27.0-next.73

2 years ago

1.27.0-next.65

2 years ago

1.27.0-next.67

2 years ago

1.27.0-next.66

2 years ago

1.27.0-next.68

2 years ago

1.27.0-next.61

2 years ago

1.27.0-next.62

2 years ago

1.27.0-next.54

2 years ago

1.27.0-next.53

2 years ago

1.27.0-next.56

2 years ago

1.27.0-next.58

2 years ago

1.27.0-next.59

2 years ago

1.27.0-next.52

2 years ago

1.27.0-next.51

2 years ago

1.27.0

2 years ago

1.28.0

2 years ago

1.28.0-next.34

2 years ago

1.28.0-next.35

2 years ago

1.28.0-next.36

2 years ago

1.28.0-next.37

2 years ago

1.28.0-next.30

2 years ago

1.28.0-next.31

2 years ago

1.28.0-next.33

2 years ago

1.28.0-next.39

2 years ago

1.28.0-next.45

2 years ago

1.28.0-next.43

2 years ago

1.28.0-next.40

2 years ago

1.29.0-next.26

2 years ago

1.29.0-next.25

2 years ago

1.29.0-next.24

2 years ago

1.29.0-next.23

2 years ago

1.29.0-next.22

2 years ago

1.29.0-next.20

2 years ago

1.29.0-next.18

2 years ago

1.29.0-next.17

2 years ago

1.29.0-next.16

2 years ago

1.29.0-next.14

2 years ago

1.29.0-next.13

2 years ago

1.29.0-next.12

2 years ago

1.29.0-next.11

2 years ago

1.29.0-next.10

2 years ago

1.28.0-next.12

2 years ago

1.28.0-next.13

2 years ago

1.28.0-next.15

2 years ago

1.28.0-next.10

2 years ago

1.28.0-next.16

2 years ago

1.28.0-next.18

2 years ago

1.28.0-next.19

2 years ago

1.28.0-next.23

2 years ago

1.28.0-next.25

2 years ago

1.28.0-next.26

2 years ago

1.28.0-next.27

2 years ago

1.28.0-next.28

2 years ago

1.28.0-next.29

2 years ago

1.29.0-next.32

2 years ago

1.29.0-next.31

2 years ago

1.29.0-next.30

2 years ago

1.26.0

2 years ago

1.26.0-next.19

2 years ago

1.26.0-next.18

2 years ago

1.26.0-next.15

2 years ago

1.26.0-next.14

2 years ago

1.26.0-next.17

2 years ago

1.26.0-next.16

2 years ago

1.26.0-next.11

2 years ago

1.26.0-next.10

2 years ago

1.26.0-next.13

2 years ago

1.26.0-next.12

2 years ago

1.26.0-next.26

2 years ago

1.26.0-next.25

2 years ago

1.26.0-next.28

2 years ago

1.26.0-next.27

2 years ago

1.26.0-next.22

2 years ago

1.26.0-next.21

2 years ago

1.26.0-next.24

2 years ago

1.26.0-next.23

2 years ago

1.26.0-next.20

2 years ago

1.27.0-next.29

2 years ago

1.27.0-next.23

2 years ago

1.27.0-next.22

2 years ago

1.27.0-next.25

2 years ago

1.27.0-next.24

2 years ago

1.27.0-next.26

2 years ago

1.27.0-next.18

2 years ago

1.27.0-next.10

2 years ago

1.27.0-next.12

2 years ago

1.27.0-next.14

2 years ago

1.27.0-next.13

2 years ago

1.27.0-next.15

2 years ago

1.26.0-next.36

2 years ago

1.26.0-next.33

2 years ago

1.26.0-next.32

2 years ago

1.26.0-next.35

2 years ago

1.26.0-next.34

2 years ago

1.26.0-next.31

2 years ago

1.26.0-next.30

2 years ago

1.26.0-next.48

2 years ago

1.26.0-next.47

2 years ago

1.26.0-next.44

2 years ago

1.26.0-next.43

2 years ago

1.26.0-next.46

2 years ago

1.26.0-next.45

2 years ago

1.26.0-next.41

2 years ago

1.27.0-next.0

2 years ago

1.27.0-next.1

2 years ago

1.27.0-next.7

2 years ago

1.27.0-next.8

2 years ago

1.27.0-next.9

2 years ago

1.27.0-next.2

2 years ago

1.27.0-next.3

2 years ago

1.27.0-next.4

2 years ago

1.27.0-next.5

2 years ago

1.26.0-next.9

2 years ago

1.26.0-next.6

2 years ago

1.26.0-next.5

2 years ago

1.26.0-next.8

2 years ago

1.26.0-next.7

2 years ago

1.26.0-next.4

2 years ago

1.26.0-next.3

2 years ago

1.25.0-next.7

2 years ago

1.25.0-next.6

2 years ago

1.25.0-next.5

2 years ago

1.25.0-next.4

2 years ago

1.25.0-next.3

2 years ago

1.25.0-next.2

2 years ago

1.25.0-next.1

2 years ago

1.25.0-next.9

2 years ago

1.25.0-next.8

2 years ago

1.25.0-next.32

2 years ago

1.25.0-next.36

2 years ago

1.25.0-next.39

2 years ago

1.25.0-next.38

2 years ago

1.25.0-next.42

2 years ago

1.25.0-next.43

2 years ago

1.25.0-next.40

2 years ago

1.25.0-next.41

2 years ago

1.25.0-next.46

2 years ago

1.25.0-next.47

2 years ago

1.25.0-next.44

2 years ago

1.25.0-next.45

2 years ago

1.25.0-next.48

2 years ago

1.25.0-next.49

2 years ago

1.25.0-next.10

2 years ago

1.25.0-next.13

2 years ago

1.25.0-next.14

2 years ago

1.25.0-next.11

2 years ago

1.25.0-next.12

2 years ago

1.25.0-next.17

2 years ago

1.25.0-next.18

2 years ago

1.25.0-next.15

2 years ago

1.25.0-next.16

2 years ago

1.25.0-next.20

2 years ago

1.25.0-next.21

2 years ago

1.25.0-next.25

2 years ago

1.25.0-next.22

2 years ago

1.25.0-next.23

2 years ago

1.25.0-next.28

2 years ago

1.25.0-next.27

2 years ago

1.25.0-next.50

2 years ago

1.26.0-next.0

2 years ago

1.26.0-next.2

2 years ago

1.26.0-next.1

2 years ago

1.25.0

2 years ago

1.24.0-next.77

2 years ago

1.24.0-next.76

2 years ago

1.24.0-next.75

2 years ago

1.24.0-next.74

2 years ago

1.24.0-next.73

2 years ago

1.24.0-next.72

2 years ago

1.24.0-next.71

2 years ago

1.24.0-next.79

2 years ago

1.24.0-next.78

2 years ago

1.24.0-next.66

2 years ago

1.24.0-next.65

2 years ago

1.24.0-next.64

2 years ago

1.24.0-next.63

2 years ago

1.24.0-next.62

2 years ago

1.24.0-next.61

2 years ago

1.24.0-next.60

2 years ago

1.24.0-next.69

2 years ago

1.24.0-next.68

2 years ago

1.24.0-next.67

2 years ago

1.25.0-next.0

2 years ago

1.24.0-next.55

2 years ago

1.24.0-next.53

2 years ago

1.24.0-next.59

2 years ago

1.24.0-next.58

2 years ago

1.24.0-next.57

2 years ago

1.24.0-next.56

2 years ago

1.24.0

2 years ago

1.24.0-next.44

2 years ago

1.24.0-next.43

2 years ago

1.24.0-next.42

2 years ago

1.24.0-next.41

2 years ago

1.24.0-next.40

2 years ago

1.24.0-next.49

2 years ago

1.24.0-next.48

2 years ago

1.24.0-next.47

2 years ago

1.24.0-next.46

2 years ago

1.24.0-next.45

2 years ago

1.24.0-next.33

2 years ago

1.24.0-next.32

2 years ago

1.24.0-next.31

2 years ago

1.24.0-next.30

2 years ago

1.24.0-next.39

2 years ago

1.24.0-next.38

2 years ago

1.24.0-next.37

2 years ago

1.24.0-next.36

2 years ago

1.24.0-next.35

2 years ago

1.24.0-next.34

2 years ago

1.24.0-next.52

2 years ago

1.24.0-next.51

2 years ago

1.24.0-next.50

2 years ago

1.24.0-next.22

2 years ago

1.24.0-next.21

2 years ago

1.24.0-next.20

2 years ago

1.24.0-next.29

2 years ago

1.24.0-next.28

2 years ago

1.24.0-next.27

2 years ago

1.24.0-next.26

2 years ago

1.24.0-next.25

2 years ago

1.24.0-next.11

2 years ago

1.24.0-next.10

2 years ago

1.24.0-next.18

2 years ago

1.24.0-next.16

2 years ago

1.24.0-next.15

2 years ago

1.24.0-next.13

2 years ago

1.24.0-next.12

2 years ago

1.24.0-next.2

2 years ago

1.24.0-next.3

2 years ago

1.24.0-next.4

2 years ago

1.24.0-next.5

2 years ago

1.24.0-next.6

2 years ago

1.24.0-next.7

2 years ago

1.22.0

2 years ago

1.22.1

2 years ago

1.22.0-next.8

2 years ago

1.22.0-next.7

2 years ago

1.22.0-next.6

2 years ago

1.22.0-next.9

2 years ago

1.23.0-next.0

2 years ago

1.23.0-next.1

2 years ago

1.23.0-next.4

2 years ago

1.23.0-next.5

2 years ago

1.23.0-next.2

2 years ago

1.23.0-next.3

2 years ago

1.23.0

2 years ago

1.24.0-next.0

2 years ago

1.24.0-next.1

2 years ago

1.23.0-next.27

2 years ago

1.23.0-next.26

2 years ago

1.23.0-next.29

2 years ago

1.23.0-next.28

2 years ago

1.23.0-next.34

2 years ago

1.23.0-next.33

2 years ago

1.23.0-next.31

2 years ago

1.23.0-next.38

2 years ago

1.23.0-next.37

2 years ago

1.23.0-next.36

2 years ago

1.23.0-next.35

2 years ago

1.23.0-next.39

2 years ago

1.23.0-next.44

2 years ago

1.23.0-next.43

2 years ago

1.23.0-next.42

2 years ago

1.23.0-next.49

2 years ago

1.23.0-next.48

2 years ago

1.23.0-next.47

2 years ago

1.23.0-next.46

2 years ago

1.23.0-next.52

2 years ago

1.22.0-next.25

2 years ago

1.23.0-next.51

2 years ago

1.22.0-next.26

2 years ago

1.22.0-next.27

2 years ago

1.22.0-next.28

2 years ago

1.23.0-next.56

2 years ago

1.22.0-next.29

2 years ago

1.23.0-next.55

2 years ago

1.23.0-next.54

2 years ago

1.23.0-next.59

2 years ago

1.23.0-next.57

2 years ago

1.22.0-next.20

2 years ago

1.22.0-next.21

2 years ago

1.22.0-next.22

2 years ago

1.22.0-next.23

2 years ago

1.22.0-next.14

2 years ago

1.22.0-next.15

2 years ago

1.23.0-next.61

2 years ago

1.22.0-next.16

2 years ago

1.23.0-next.60

2 years ago

1.22.0-next.17

2 years ago

1.22.0-next.18

2 years ago

1.22.0-next.19

2 years ago

1.22.0-next.10

2 years ago

1.22.0-next.12

2 years ago

1.22.0-next.13

2 years ago

1.22.0-next.30

2 years ago

1.22.0-next.31

2 years ago

1.22.0-next.32

2 years ago

1.22.0-next.0

2 years ago

1.22.0-next.4

2 years ago

1.22.0-next.3

2 years ago

1.22.0-next.2

2 years ago

1.22.0-next.1

2 years ago

1.22.0-next.5

2 years ago

1.18.0-next.176

2 years ago

1.18.0-next.177

2 years ago

1.18.0-next.178

2 years ago

1.18.0-next.179

2 years ago

1.18.0-next.173

2 years ago

1.18.0-next.174

2 years ago

1.18.0-next.170

2 years ago

1.18.0-next.171

2 years ago

1.18.0-next.169

2 years ago

1.18.0-next.165

2 years ago

1.18.0-next.166

2 years ago

1.18.0-next.167

2 years ago

1.18.0-next.168

2 years ago

1.18.0-next.161

2 years ago

1.18.0-next.162

2 years ago

1.18.0-next.163

2 years ago

1.18.0-next.164

2 years ago

1.18.0-next.160

2 years ago

1.18.0-next.154

2 years ago

1.18.0-next.155

2 years ago

1.18.0-next.150

2 years ago

1.18.0-next.151

2 years ago

1.18.0-next.152

2 years ago

1.18.0-next.153

2 years ago

1.18.0-next.147

2 years ago

1.18.0-next.148

2 years ago

1.18.0-next.149

2 years ago

1.18.0-next.144

2 years ago

1.18.0-next.146

2 years ago

1.18.0-next.183

2 years ago

1.18.0-next.181

2 years ago

1.18.0-next.182

2 years ago

1.21.0-next.32

2 years ago

1.21.0-next.31

2 years ago

1.21.0-next.19

2 years ago

1.21.0-next.16

2 years ago

1.21.0-next.15

2 years ago

1.21.0-next.18

2 years ago

1.21.0-next.17

2 years ago

1.21.0-next.12

2 years ago

1.21.0-next.11

2 years ago

1.21.0-next.14

2 years ago

1.21.0-next.13

2 years ago

1.21.0-next.29

2 years ago

1.21.0-next.23

2 years ago

1.21.0-next.22

2 years ago

1.21.0-next.24

2 years ago

1.21.0-next.21

2 years ago

1.21.0-next.20

2 years ago

1.20.0

2 years ago

1.21.0

2 years ago

1.18.0-next.143

2 years ago

1.18.0-next.140

2 years ago

1.18.0-next.141

2 years ago

1.18.0-next.142

2 years ago

1.18.0-next.136

2 years ago

1.18.0-next.137

2 years ago

1.18.0-next.138

2 years ago

1.18.0-next.139

2 years ago

1.19.0

2 years ago

1.18.0-next.135

2 years ago

1.18.0-next.131

2 years ago

1.18.0-next.129

2 years ago

1.18.0-next.125

3 years ago

1.18.0-next.126

2 years ago

1.18.0-next.128

2 years ago

1.18.0-next.121

3 years ago

1.18.0-next.122

3 years ago

1.18.0-next.123

3 years ago

1.18.0-next.124

3 years ago

1.18.0-next.120

3 years ago

1.18.0-next.118

3 years ago

1.18.0-next.119

3 years ago

1.18.0-next.88

3 years ago

1.18.0-next.89

3 years ago

1.18.0-next.86

3 years ago

1.18.0-next.87

3 years ago

1.18.0-next.84

3 years ago

1.18.0-next.85

3 years ago

1.18.0-next.93

3 years ago

1.18.0-next.94

3 years ago

1.18.0-next.92

3 years ago

1.18.0-next.90

3 years ago

1.18.0-next.99

3 years ago

1.18.0-next.97

3 years ago

1.18.0-next.98

3 years ago

1.18.0-next.95

3 years ago

1.18.0-next.96

3 years ago

1.18.0-next.77

3 years ago

1.18.0-next.75

3 years ago

1.18.0-next.76

3 years ago

1.18.0-next.114

3 years ago

1.18.0-next.115

3 years ago

1.18.0-next.116

3 years ago

1.18.0-next.117

3 years ago

1.18.0-next.110

3 years ago

1.18.0-next.111

3 years ago

1.18.0-next.112

3 years ago

1.18.0-next.113

3 years ago

1.18.0-next.108

3 years ago

1.18.0-next.109

3 years ago

1.18.0-next.103

3 years ago

1.18.0-next.104

3 years ago

1.18.0-next.105

3 years ago

1.18.0-next.106

3 years ago

1.18.0-next.100

3 years ago

1.18.0-next.101

3 years ago

1.18.0-next.69

3 years ago

1.18.0-next.66

3 years ago

1.18.0-next.72

3 years ago

1.18.0-next.70

3 years ago

1.18.0

3 years ago

1.18.0-next.61

3 years ago

1.18.0-next.64

3 years ago

1.18.0-next.65

3 years ago

1.18.0-next.62

3 years ago

1.18.0-next.63

3 years ago

1.17.2

3 years ago

1.17.1

3 years ago

1.17.0

3 years ago

1.16.0

3 years ago

1.15.0

3 years ago

1.14.0

3 years ago

1.13.0

3 years ago

1.12.1

3 years ago

1.12.0

3 years ago

1.11.0

3 years ago

1.10.0

3 years ago

1.9.0

3 years ago

1.8.1

3 years ago

1.8.0

3 years ago

1.7.0

3 years ago

1.6.0

4 years ago

1.5.0

4 years ago

1.4.0

4 years ago

1.3.0

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago

0.16.1

4 years ago

0.16.0

4 years ago

0.15.0

4 years ago

0.14.0

4 years ago

0.13.0

4 years ago

0.12.0

4 years ago

0.11.0

5 years ago

0.10.0

5 years ago

0.9.0

5 years ago

0.8.0

5 years ago

0.7.2

5 years ago

0.7.1

5 years ago

0.7.0

5 years ago

0.6.1

5 years ago

0.6.0

5 years ago

0.5.0

5 years ago

0.4.0

5 years ago

0.3.19

5 years ago

0.3.18

5 years ago

0.3.17

5 years ago

0.3.16

6 years ago

0.3.15

6 years ago

0.3.14

6 years ago

0.3.13

6 years ago

0.3.12

6 years ago

0.3.11

6 years ago

0.3.10

6 years ago

0.3.9

6 years ago

0.3.8

6 years ago

0.3.7

6 years ago

0.3.6

6 years ago

0.3.3

6 years ago

0.3.2

6 years ago

0.3.0

6 years ago

0.2.4

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

7 years ago