1.76.1 • Published 2 days ago

@storm-software/workspace-tools v1.76.1

Weekly downloads
-
License
Apache 2.0
Repository
github
Last release
2 days ago

Version  Nx NextJs Commitizen friendly Semantic-Release documented with docusaurus GitHub Workflow Status (with event)

!IMPORTANT This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.

Storm Workspace Tools

A package containing tools for managing a Storm workspace. It includes various Nx generators and executors for common development tasks.

This library was generated with Nx.

Installing

Using pnpm:

pnpm add -D @storm-software/workspace-tools
npm install -D @storm-software/workspace-tools
yarn add -D @storm-software/workspace-tools

Executors

The following executors are available in this package to invoke common tasks for the workspace's projects:

Tsup Builder

Run a build on the project using ESBuild with a patched tsup configuration

Example

This executor can be used by executing the following in a command line utility:

nx run my-project:tsup

Please note: The tsup executor should be included in the desired projects's project.json file.All required options must be included in the options property of the json.

Options

The following executor options are available:

OptionTypeDescriptionDefault
entrystringThe path to the entry file, relative to project."{sourceRoot}/index.ts"
outputPathstringThe output path of the generated files."dist/{projectRoot}"
tsConfig *stringThe path to the `tsconfig.json` file."{projectRoot}/tsconfig.json"
additionalEntryPointsstring[]List of additional entry points.[]
externalstring[]Mark one or more module as external. Can use * wildcards, such as *.png.
bundlebooleanWhether to bundle the main entry point and additional entry points. Set to false to keep individual output files.true
watchbooleanEnable re-building when files change.
assetsarrayList of static assets.[]
cleanbooleanRemove previous output before build.true
includeSrcbooleanShould the source files be added to the distribution folder in an `src` directory.
metafilebooleanShould a meta file be created for the build packagetrue
emitOnAllbooleanShould each file contained in the package be emitted individually.
generatePackageJsonbooleanShould a package.json file be generated in the output folder or should the existing one be copied in.true
splittingbooleanShould the build process preform *code-splitting*?true
treeshakebooleanShould the build process *tree-shake* to remove unused code?true
formatstring[]The output format for the generated JavaScript files. There are currently three possible values that can be configured: iife, cjs, and esm.[]
debugbooleanShould output be unminified with source mappings.
platform *"browser" | "neutral" | "node" | "worker"Platform target for outputs."neutral"
banner *stringA short heading added to the top of each typescript file added in the output folder's `src` directory."This code was developed by Storm Software (https://stormsoftware.com) and is licensed under the Apache License 2.0."
minifybooleanShould the build process minify the output files?
verbosebooleanShould write extra log outputs with details from the executor.
skipNativeModulesPluginbooleanShould we skip adding the Native Node Modules ESBuild plugin.
useJsxModulebooleanShould the build process use the `jsx` module for JSX support?
shimsbooleanShould the build process add shims for node.js modules that are not available in the browser?
defineobjectDefine global constants that can be used in the source code. The value will be converted into a stringified JSON.
envobjectDefine environment variables that can be used in the source code. The value will be converted into a stringified JSON.
apiReportbooleanShould API Extractor generate an API Report file.true
docModelbooleanShould API Extractor generate an Doc Model markdown file.true
tsdocMetadatabooleanShould API Extractor generate an TSDoc Metadata file.true
optionsobjectAdditional options to pass to tsup. See https://paka.dev/npm/tsup@7.2.0/api#d35d54aca71eb26e.
pluginsobject[]List of ESBuild plugins to use during processing[]

Please note: Option names followed by * above are required, and must be provided to run the executor.

Neutral TypeScript Builder

Runs a neutral platform TypeScript build

Example

This executor can be used by executing the following in a command line utility:

nx run my-project:tsup-neutral

Please note: The tsup-neutral executor should be included in the desired projects's project.json file.

Node TypeScript Builder

Runs a node platform TypeScript build

Example

This executor can be used by executing the following in a command line utility:

nx run my-project:tsup-node

Please note: The tsup-node executor should be included in the desired projects's project.json file.

Options

The following executor options are available:

OptionTypeDescriptionDefault
transportsstring[][]

Browser TypeScript Builder

Runs a browser platform TypeScript build

Example

This executor can be used by executing the following in a command line utility:

nx run my-project:tsup-browser

Please note: The tsup-browser executor should be included in the desired projects's project.json file.

Typia Generate Executor

Run the Typia generator to create runtime type validators

Example

This executor can be used by executing the following in a command line utility:

nx run my-project:typia

Please note: The typia executor should be included in the desired projects's project.json file.All required options must be included in the options property of the json.

Options

The following executor options are available:

OptionTypeDescriptionDefault
entryPath *stringThe path of the typescript files using `typia`."{sourceRoot}"
outputPath *stringThe output path of the generated files."{sourceRoot}/generated/typia"
tsConfig *stringThe path to the `tsconfig.json` file."{projectRoot}/tsconfig.json"
cleanbooleanRemove previous output before build.true

Please note: Option names followed by * above are required, and must be provided to run the executor.

Npm Publish executor

Publish a package to the NPM registry - DO NOT INVOKE DIRECTLY WITH `nx run`. Use `nx release publish` instead.

Example

This executor can be used by executing the following in a command line utility:

nx run my-project:npm-publish

Please note: The npm-publish executor should be included in the desired projects's project.json file.All required options must be included in the options property of the json.

Options

The following executor options are available:

OptionTypeDescriptionDefault
packageRootstringThe root directory of the directory (containing a manifest file at its root) to publish. Defaults to the project root.
registry *stringThe registry to publish the package to."https://registry.npmjs.org/"
tagstringThe distribution tag to apply to the published package.
dryRunbooleanWhether to run the command without actually publishing the package to the registry.

Please note: Option names followed by * above are required, and must be provided to run the executor.

Cargo Publish executor

Publish a package to the crates.io registry - DO NOT INVOKE DIRECTLY WITH `nx run`. Use `nx release publish` instead.

Example

This executor can be used by executing the following in a command line utility:

nx run my-project:cargo-publish

Please note: The cargo-publish executor should be included in the desired projects's project.json file.

Options

The following executor options are available:

OptionTypeDescriptionDefault
packageRootstringThe root directory of the directory (containing a manifest file at its root) to publish. Defaults to the project root.
dryRunbooleanWhether to run the command without actually publishing the package to the registry.

Rolldown Builder

An executor used by Storm Software to run the Rolldown build process

Example

This executor can be used by executing the following in a command line utility:

nx run my-project:rolldown

Please note: The rolldown executor should be included in the desired projects's project.json file.All required options must be included in the options property of the json.

Options

The following executor options are available:

OptionTypeDescriptionDefault
entrystringThe path to the entry file, relative to project."{sourceRoot}/index.ts"
outputPathstringThe output path of the generated files."dist/{projectRoot}"
tsConfig *stringThe path to the `tsconfig.json` file."{projectRoot}/tsconfig.json"
additionalEntryPointsstring[]List of additional entry points.[]
watchbooleanEnable re-building when files change.
assetsarrayList of static assets.[]
cleanbooleanRemove previous output before build.true
includeSrcbooleanShould the source files be added to the distribution folder in an `src` directory.
generatePackageJsonbooleanShould a package.json file be generated in the output folder or should the existing one be copied in.true
debugbooleanShould output be unminified with source mappings.
platform *"browser" | "neutral" | "node" | "worker"Platform target for outputs."neutral"
banner *stringA short heading added to the top of each typescript file added in the output folder's `src` directory."This code was developed by Storm Software (https://stormsoftware.com) and is licensed under the Apache License 2.0."
minifybooleanShould the build process minify the output files?
verbosebooleanShould write extra log outputs with details from the executor.
pluginsobject[]List of Rollup plugins to use during processing[]

Please note: Option names followed by * above are required, and must be provided to run the executor.

Unbuild Builder

An executor used by Storm Software to run the Unbuild build process

Example

This executor can be used by executing the following in a command line utility:

nx run my-project:unbuild

Please note: The unbuild executor should be included in the desired projects's project.json file.All required options must be included in the options property of the json.

Options

The following executor options are available:

OptionTypeDescriptionDefault
entrystringThe path to the entry file, relative to project."{sourceRoot}/index.ts"
outputPathstringThe output path of the generated files."dist/{projectRoot}"
tsConfig *stringThe path to the `tsconfig.json` file."{projectRoot}/tsconfig.json"
additionalEntryPointsstring[]List of additional entry points.[]
watchbooleanEnable re-building when files change.
assetsarrayList of static assets.[]
cleanbooleanRemove previous output before build.true
includeSrcbooleanShould the source files be added to the distribution folder in an `src` directory.
debugbooleanShould output be unminified with source mappings.
minifybooleanShould the build process minify the output files?
verbosebooleanShould write extra log outputs with details from the executor.
pluginsobject[]List of Rollup plugins to use during processing[]

Please note: Option names followed by * above are required, and must be provided to run the executor.

Generators

The following generators are available with this package to assist in workspace management:

Init Storm Workspace Plugin

Init Storm Workspace Plugin.

Options

The following executor options are available:

OptionTypeDescriptionDefault
skipFormatbooleanSkip formatting files.

Workspace Preset

Create a Storm workspace with all of the required files and recommended packages installed.

Examples

This generator can be used by executing the following examples in a command line utility:

Generate a storm workspace with:

nx g @storm-software/workspace-tools:preset --name 'example-repo'

Generate a storm workspace with:

nx g @storm-software/workspace-tools:preset --name 'example-repo' --namespace 'example'

Generate a storm workspace with:

nx g @storm-software/workspace-tools:preset --name 'example-repo' --namespace 'example' --organization 'example-org' --description 'An example workspace'

Options

The following executor options are available:

OptionTypeDescriptionDefault
name *stringThe name of the workspace root.
organization *stringThe organization that owns the workspace."storm-software"
namespacestringThe npm scope used for the workspace. Defaults to the organization name.
includeApps *booleanShould a separate apps folder be created for this workspace (if Yes: apps and libs folders will be added, if No: packages folders will be added)?
descriptionstringThe description of the workspace to use in the package.json and README.md files.
repositoryUrlstringThe URL of the workspace in GitHub. Defaults to https://github.com/{organization}/{name}
includeRustbooleanShould the workspace include Rust support?
nxCloudbooleanShould distributed caching with Nx Cloud be enabled for the workspace?
mode *"light" | "dark"Which client mode should be used for the Nx Task Runner?"dark"
packageManager"npm" | "yarn" | "pnpm"What package manager is used for the workspace?"pnpm"

Please note: Option names followed by * above are required, and must be provided to run the executor.

Add Node Library

Create a new NodeJs TypeScript library package in the Storm workspace

Options

The following executor options are available:

OptionTypeDescriptionDefault
name *stringA name for the library.
descriptionstringThe library used by Storm Software for building TypeScript applications.
directory *stringA directory where the lib is placed.
projectNameAndRootFormat *"as-provided" | "derived"Whether to generate the project name and root directory as provided (as-provided) or generate them composing their values and taking the configured layout into account (derived).
tagsstringAdd tags to the library (used for linting).
strictbooleanWhether to enable tsconfig strict mode or not.true
publishable *booleanGenerate a publishable library.
importPath *stringThe library name used to import it, like @storm-software/my-awesome-lib. Required for publishable library.
buildable *booleanGenerate a buildable library.true
setParserOptionsProjectbooleanWhether or not to configure the ESLint parserOptions.project option. We do not do this by default for lint performance reasons.
rootProjectbooleanIs the current project the root project in the workspace.

Please note: Option names followed by * above are required, and must be provided to run the executor.

Configuration Schema Creator

Create a StormConfig JSON schema based on the workspace's project configurations

Options

The following executor options are available:

OptionTypeDescriptionDefault
outputFile *stringThe file path where the schema json will be written (relative to the workspace root)"./storm.schema.json"

Please note: Option names followed by * above are required, and must be provided to run the executor.

Add Neutral Library

Create a new Neutral TypeScript library package in the Storm workspaces

Options

The following executor options are available:

OptionTypeDescriptionDefault
name *stringA name for the library.
descriptionstringThe library used by Storm Software for building TypeScript applications.
directory *stringA directory where the lib is placed.
projectNameAndRootFormat *"as-provided" | "derived"Whether to generate the project name and root directory as provided (as-provided) or generate them composing their values and taking the configured layout into account (derived).
tagsstringAdd tags to the library (used for linting).
strictbooleanWhether to enable tsconfig strict mode or not.true
publishable *booleanGenerate a publishable library.
importPath *stringThe library name used to import it, like @storm-software/my-awesome-lib. Required for publishable library.
buildable *booleanGenerate a buildable library.true
setParserOptionsProjectbooleanWhether or not to configure the ESLint parserOptions.project option. We do not do this by default for lint performance reasons.
rootProjectbooleanIs the current project the root project in the workspace.

Please note: Option names followed by * above are required, and must be provided to run the executor.

Add browser Library

Create a new browser TypeScript library package in the Storm workspace

Options

The following executor options are available:

OptionTypeDescriptionDefault
name *stringA name for the library.
descriptionstringThe library used by Storm Software for building TypeScript applications.
directory *stringA directory where the lib is placed.
projectNameAndRootFormat *"as-provided" | "derived"Whether to generate the project name and root directory as provided (as-provided) or generate them composing their values and taking the configured layout into account (derived).
tagsstringAdd tags to the library (used for linting).
strictbooleanWhether to enable tsconfig strict mode or not.true
publishable *booleanGenerate a publishable library.
importPath *stringThe library name used to import it, like @storm-software/my-awesome-lib. Required for publishable library.
buildable *booleanGenerate a buildable library.true
setParserOptionsProjectbooleanWhether or not to configure the ESLint parserOptions.project option. We do not do this by default for lint performance reasons.
rootProjectbooleanIs the current project the root project in the workspace.

Please note: Option names followed by * above are required, and must be provided to run the executor.

design-tokens

Generate design tokens code using a Token Studio export

Storm Release Version Generator

The release version generator used in Storm Workspaces

Options

The following executor options are available:

OptionTypeDescriptionDefault
projects *object[]The ProjectGraphProjectNodes being versioned in the current execution.
projectGraph *objectProjectGraph instance
specifierstringExact version or semver keyword to apply to the selected release group. Overrides specifierSource.
releaseGroup *objectThe resolved release group configuration, including name, relevant to all projects in the current execution.
specifierSource"prompt" | "conventional-commits"Which approach to use to determine the semver specifier used to bump the version of the project."conventional-commits"
preidstringThe optional prerelease identifier to apply to the version, in the case that specifier has been set to prerelease.
packageRootstringThe root directory of the directory (containing a manifest file at its root) to publish. Defaults to the project root
currentVersionResolver"registry" | "disk" | "git-tag"Which approach to use to determine the current version of the project."disk"
currentVersionResolverMetadataobjectAdditional metadata to pass to the current version resolver.[object Object]

Please note: Option names followed by * above are required, and must be provided to run the executor.

Building

Run nx build workspace-tools to build the library.

Running unit tests

Run nx test workspace-tools to execute the unit tests via Jest.

Storm Workspaces

Storm workspaces are built using Nx, a set of extensible dev tools for monorepos, which helps you develop like Google, Facebook, and Microsoft. Building on top of Nx, the Open System provides a set of tools and patterns that help you scale your monorepo to many teams while keeping the codebase maintainable.

Roadmap

See the open issues for a list of proposed features (and known issues).

Support

Reach out to the maintainer at one of the following places:

License

This project is licensed under the Apache License 2.0. Feel free to edit and distribute this template as you like.

See LICENSE for more information.

Changelog

This project adheres to Semantic Versioning. Every release, along with the migration instructions, is documented in the CHANGELOG file

Contributing

First off, thanks for taking the time to contribute! Contributions are what makes the open-source community such an amazing place to learn, inspire, and create. Any contributions you make will benefit everybody else and are greatly appreciated.

Please try to create bug reports that are:

  • Reproducible. Include steps to reproduce the problem.
  • Specific. Include as much detail as possible: which version, what environment, etc.
  • Unique. Do not duplicate existing opened issues.
  • Scoped to a Single Bug. One bug per report.

Please adhere to this project's code of conduct.

You can use markdownlint-cli to check for common markdown style inconsistency.

Contributors

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

Storm Software is an open source software development organization and creator of Acidic, StormStack and StormCloud.

Our mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.

If this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our website!

1.76.0

3 days ago

1.76.1

2 days ago

1.75.0

5 days ago

1.74.0

5 days ago

1.73.2

10 days ago

1.73.1

14 days ago

1.73.0

16 days ago

1.72.3

17 days ago

1.72.2

17 days ago

1.72.1

24 days ago

1.72.0

25 days ago

1.71.1

28 days ago

1.70.0

30 days ago

1.70.1

30 days ago

1.71.0

29 days ago

1.68.10

1 month ago

1.68.11

1 month ago

1.69.0

1 month ago

1.68.1

1 month ago

1.68.2

1 month ago

1.68.3

1 month ago

1.68.4

1 month ago

1.68.5

1 month ago

1.68.6

1 month ago

1.68.7

1 month ago

1.68.8

1 month ago

1.68.9

1 month ago

1.67.0

1 month ago

1.68.0

1 month ago

1.66.30

1 month ago

1.66.29

1 month ago

1.66.28

1 month ago

1.66.27

1 month ago

1.66.2

1 month ago

1.66.3

1 month ago

1.66.4

1 month ago

1.66.5

1 month ago

1.66.6

1 month ago

1.66.7

1 month ago

1.66.8

1 month ago

1.66.9

1 month ago

1.66.19

1 month ago

1.66.18

1 month ago

1.66.15

1 month ago

1.66.14

1 month ago

1.66.17

1 month ago

1.66.16

1 month ago

1.66.11

1 month ago

1.66.10

1 month ago

1.66.13

1 month ago

1.66.12

1 month ago

1.66.22

1 month ago

1.66.21

1 month ago

1.66.23

1 month ago

1.66.20

1 month ago

1.66.1

1 month ago

1.66.0

2 months ago

1.65.5

2 months ago

1.65.6

2 months ago

1.65.4

2 months ago

1.65.0

2 months ago

1.65.1

2 months ago

1.65.2

2 months ago

1.65.3

2 months ago

1.63.3

2 months ago

1.63.4

2 months ago

1.63.5

2 months ago

1.63.6

2 months ago

1.64.0

2 months ago

1.62.39

2 months ago

1.62.38

2 months ago

1.62.37

2 months ago

1.62.36

2 months ago

1.62.35

2 months ago

1.62.34

2 months ago

1.62.33

2 months ago

1.62.32

2 months ago

1.62.31

2 months ago

1.63.0

2 months ago

1.63.1

2 months ago

1.63.2

2 months ago

1.62.30

2 months ago

1.62.19

2 months ago

1.62.18

2 months ago

1.62.17

2 months ago

1.62.16

2 months ago

1.62.29

2 months ago

1.62.28

2 months ago

1.62.27

2 months ago

1.62.26

2 months ago

1.62.25

2 months ago

1.62.24

2 months ago

1.62.23

2 months ago

1.62.22

2 months ago

1.62.21

2 months ago

1.62.20

2 months ago

1.61.0

2 months ago

1.62.15

2 months ago

1.62.14

2 months ago

1.62.13

2 months ago

1.62.12

2 months ago

1.62.11

2 months ago

1.62.10

2 months ago

1.62.0

2 months ago

1.62.2

2 months ago

1.62.1

2 months ago

1.62.4

2 months ago

1.62.3

2 months ago

1.62.6

2 months ago

1.62.5

2 months ago

1.62.8

2 months ago

1.62.7

2 months ago

1.62.9

2 months ago

1.60.23

2 months ago

1.60.6

3 months ago

1.60.5

3 months ago

1.60.8

3 months ago

1.60.7

3 months ago

1.60.9

3 months ago

1.60.20

2 months ago

1.60.21

2 months ago

1.60.22

2 months ago

1.60.10

3 months ago

1.60.11

3 months ago

1.60.12

3 months ago

1.60.13

3 months ago

1.60.14

3 months ago

1.60.15

3 months ago

1.60.16

3 months ago

1.60.17

3 months ago

1.60.18

3 months ago

1.60.19

3 months ago

1.60.4

3 months ago

1.59.11

3 months ago

1.56.14

3 months ago

1.56.13

3 months ago

1.56.12

3 months ago

1.56.5

3 months ago

1.56.9

3 months ago

1.56.10

3 months ago

1.56.11

3 months ago

1.56.1

3 months ago

1.56.3

3 months ago

1.56.2

3 months ago

1.56.4

3 months ago

1.56.0

3 months ago

1.54.2

3 months ago

1.55.2

3 months ago

1.55.1

3 months ago

1.55.0

3 months ago

1.53.1

3 months ago

1.54.1

3 months ago

1.54.0

3 months ago

1.53.0

3 months ago

1.52.7

3 months ago

1.52.6

3 months ago

1.52.16

3 months ago

1.52.15

3 months ago

1.52.17

3 months ago

1.52.12

3 months ago

1.52.11

3 months ago

1.52.13

3 months ago

1.52.10

3 months ago

1.52.5

3 months ago

1.52.4

3 months ago

1.52.1

3 months ago

1.52.0

3 months ago

1.52.3

3 months ago

1.52.2

3 months ago

1.49.30

3 months ago

1.49.31

3 months ago

1.49.26

3 months ago

1.49.27

3 months ago

1.49.28

3 months ago

1.49.29

3 months ago

1.49.20

3 months ago

1.49.21

3 months ago

1.49.22

3 months ago

1.49.23

3 months ago

1.49.24

3 months ago

1.49.25

3 months ago

1.49.16

3 months ago

1.49.17

3 months ago

1.49.18

3 months ago

1.49.19

3 months ago

1.50.1

3 months ago

1.50.0

3 months ago

1.50.3

3 months ago

1.50.2

3 months ago

1.50.5

3 months ago

1.50.4

3 months ago

1.51.0

3 months ago

1.51.2

3 months ago

1.51.1

3 months ago

1.49.15

4 months ago

1.49.11

4 months ago

1.49.12

4 months ago

1.49.13

4 months ago

1.49.14

4 months ago

1.49.10

4 months ago

1.49.5

4 months ago

1.49.4

4 months ago

1.49.7

4 months ago

1.49.6

4 months ago

1.49.9

4 months ago

1.49.8

4 months ago

1.48.6

4 months ago

1.48.5

4 months ago

1.48.7

4 months ago

1.49.1

4 months ago

1.49.0

4 months ago

1.49.3

4 months ago

1.49.2

4 months ago

1.46.0

4 months ago

1.46.1

4 months ago

1.47.0

4 months ago

1.48.0

4 months ago

1.45.3

4 months ago

1.45.2

4 months ago

1.44.0

4 months ago

1.45.1

4 months ago

1.45.0

4 months ago

1.43.21

4 months ago

1.43.20

4 months ago

1.43.19

4 months ago

1.43.18

4 months ago

1.43.17

4 months ago

1.43.12

4 months ago

1.43.11

4 months ago

1.43.10

4 months ago

1.43.16

4 months ago

1.43.15

4 months ago

1.43.14

4 months ago

1.43.13

4 months ago

1.43.9

4 months ago

1.43.3

4 months ago

1.43.5

4 months ago

1.43.4

4 months ago

1.43.7

4 months ago

1.43.6

4 months ago

1.43.8

4 months ago

1.40.0

4 months ago

1.40.1

4 months ago

1.41.1

4 months ago

1.41.0

4 months ago

1.42.0

4 months ago

1.42.2

4 months ago

1.42.1

4 months ago

1.42.4

4 months ago

1.42.3

4 months ago

1.43.1

4 months ago

1.43.0

4 months ago

1.43.2

4 months ago

1.39.0

4 months ago

1.38.1

4 months ago

1.38.0

4 months ago

1.36.7

4 months ago

1.37.0

4 months ago

1.37.1

4 months ago

1.36.1

4 months ago

1.36.4

4 months ago

1.36.5

4 months ago

1.36.2

4 months ago

1.36.3

4 months ago

1.36.6

4 months ago

1.36.0

4 months ago

1.35.5

4 months ago

1.35.4

4 months ago

1.34.2

5 months ago

1.35.1

5 months ago

1.35.2

5 months ago

1.35.0

5 months ago

1.35.3

5 months ago

1.33.1

5 months ago

1.34.0

5 months ago

1.34.1

5 months ago

1.32.1

5 months ago

1.33.0

5 months ago

1.32.0

5 months ago

1.31.16

5 months ago

1.31.17

5 months ago

1.31.10

5 months ago

1.31.11

5 months ago

1.31.14

5 months ago

1.31.15

5 months ago

1.31.12

5 months ago

1.31.13

5 months ago

1.31.6

5 months ago

1.31.9

5 months ago

1.31.7

5 months ago

1.31.8

5 months ago

1.31.5

5 months ago

1.31.4

5 months ago

1.31.3

5 months ago

1.31.1

5 months ago

1.31.2

5 months ago

1.30.10

5 months ago

1.30.13

5 months ago

1.30.14

5 months ago

1.30.11

5 months ago

1.30.12

5 months ago

1.31.0

5 months ago

1.30.8

5 months ago

1.30.9

5 months ago

1.30.6

5 months ago

1.30.7

5 months ago

1.30.4

5 months ago

1.30.5

5 months ago

1.29.0

5 months ago

1.24.1

5 months ago

1.24.2

5 months ago

1.25.0

5 months ago

1.26.0

5 months ago

1.26.1

5 months ago

1.27.0

5 months ago

1.30.2

5 months ago

1.30.3

5 months ago

1.30.0

5 months ago

1.30.1

5 months ago

1.28.0

5 months ago

1.23.0

5 months ago

1.23.1

5 months ago

1.24.0

5 months ago

1.22.2

5 months ago

1.22.0

5 months ago

1.22.1

5 months ago

1.21.19

5 months ago

1.21.17

5 months ago

1.21.18

5 months ago

1.21.16

5 months ago

1.21.15

5 months ago

1.21.14

5 months ago

1.21.13

5 months ago

1.21.12

5 months ago

1.21.11

5 months ago

1.21.10

5 months ago

1.21.9

5 months ago

1.21.8

5 months ago

1.21.7

5 months ago

1.21.6

5 months ago

1.21.5

5 months ago

1.21.4

5 months ago

1.21.3

5 months ago

1.21.2

5 months ago

1.21.1

5 months ago

1.21.0

5 months ago

1.20.1

5 months ago

1.20.0

5 months ago

1.19.3

5 months ago

1.19.2

5 months ago

1.19.1

5 months ago

1.19.0

5 months ago

1.18.0

5 months ago

1.17.1

5 months ago

1.17.0

5 months ago

1.16.17

5 months ago

1.16.16

5 months ago

1.16.15

5 months ago

1.16.14

5 months ago

1.16.13

5 months ago

1.16.12

5 months ago

1.16.11

5 months ago

1.16.10

5 months ago

1.16.9

5 months ago

1.16.8

5 months ago

1.16.7

5 months ago

1.16.6

5 months ago

1.16.5

5 months ago

1.16.4

5 months ago

1.16.3

5 months ago

1.16.2

5 months ago

1.16.1

5 months ago

1.16.0

5 months ago

1.15.3

5 months ago

1.15.2

5 months ago

1.15.1

5 months ago

1.15.0

5 months ago

1.14.2

5 months ago

1.14.1

5 months ago

1.14.0

5 months ago

1.13.26

5 months ago

1.13.25

5 months ago

1.13.24

5 months ago

1.13.23

5 months ago

1.13.22

5 months ago

1.13.21

5 months ago

1.13.20

5 months ago

1.13.19

5 months ago

1.13.18

5 months ago

1.13.17

5 months ago

1.13.16

5 months ago

1.13.15

5 months ago

1.13.14

5 months ago

1.13.13

5 months ago

1.13.12

5 months ago

1.13.11

5 months ago

1.13.10

5 months ago

1.13.9

5 months ago

1.13.8

6 months ago

1.13.7

6 months ago

1.13.6

6 months ago

1.13.5

6 months ago

1.13.4

6 months ago

1.13.3

6 months ago

1.13.2

6 months ago

1.13.1

6 months ago

1.13.0

6 months ago

1.12.6

6 months ago

1.12.5

6 months ago

1.12.4

6 months ago

1.12.3

6 months ago

1.12.2

6 months ago

1.12.1

6 months ago

1.12.0

6 months ago

1.11.1

6 months ago

1.11.0

6 months ago

1.10.20

6 months ago

1.10.19

6 months ago

1.10.18

6 months ago

1.10.17

6 months ago

1.10.16

6 months ago

1.10.15

6 months ago

1.10.14

6 months ago

1.10.13

6 months ago

1.10.12

6 months ago

1.10.11

6 months ago

1.10.10

6 months ago

1.10.9

6 months ago

1.10.8

6 months ago

1.10.7

6 months ago

1.10.6

6 months ago

1.10.5

6 months ago

1.10.4

6 months ago

1.10.3

6 months ago

1.10.2

6 months ago

1.10.1

6 months ago

1.10.0

6 months ago

1.9.0

6 months ago

1.8.5

6 months ago

1.8.4

6 months ago

1.8.3

6 months ago

1.8.2

6 months ago

1.8.1

6 months ago

1.8.0

6 months ago

1.7.37

6 months ago

1.7.36

6 months ago

1.7.35

6 months ago

1.7.34

6 months ago

1.7.33

6 months ago

1.7.32

6 months ago

1.7.31

6 months ago

1.7.30

6 months ago

1.7.29

6 months ago

1.7.28

6 months ago

1.7.27

6 months ago

1.7.26

6 months ago

1.7.25

6 months ago

1.7.24

6 months ago

1.7.23

6 months ago

1.7.22

6 months ago

1.7.21

6 months ago

1.7.20

6 months ago

1.7.19

6 months ago

1.7.18

6 months ago

1.7.17

6 months ago

1.7.16

6 months ago

1.7.15

6 months ago

1.7.14

6 months ago

1.7.13

6 months ago

1.7.12

6 months ago

1.7.11

6 months ago

1.7.10

6 months ago

1.7.9

6 months ago

1.7.8

6 months ago

1.7.7

6 months ago

1.7.6

6 months ago

1.7.5

6 months ago

1.7.4

6 months ago

1.7.3

6 months ago

1.7.2

6 months ago

1.7.1

6 months ago

1.7.0

6 months ago

1.6.58

6 months ago

1.6.57

6 months ago

1.6.56

6 months ago

1.6.55

6 months ago

1.6.54

6 months ago

1.6.53

6 months ago

1.6.52

6 months ago

1.6.51

6 months ago

1.6.50

6 months ago

1.6.49

6 months ago

1.6.48

6 months ago

1.6.47

6 months ago

1.6.46

6 months ago

1.6.45

6 months ago

1.6.44

6 months ago

1.6.43

6 months ago

1.6.42

6 months ago

1.6.41

6 months ago

1.6.40

6 months ago

1.6.39

6 months ago

1.6.38

6 months ago

1.6.37

6 months ago

1.6.36

6 months ago

1.6.35

6 months ago

1.6.34

6 months ago

1.6.33

6 months ago

1.6.32

6 months ago

1.6.31

6 months ago

1.6.30

6 months ago

1.6.29

6 months ago

1.6.28

6 months ago

1.6.27

6 months ago

1.6.26

6 months ago

1.6.25

6 months ago

1.6.24

6 months ago

1.6.23

6 months ago

1.6.22

6 months ago

1.6.21

6 months ago

1.6.20

6 months ago

1.6.19

6 months ago

1.6.18

6 months ago

1.6.17

6 months ago

1.6.16

6 months ago

1.6.15

6 months ago

1.6.14

6 months ago

1.6.13

6 months ago

1.6.12

6 months ago

1.6.11

6 months ago

1.6.10

6 months ago

1.6.9

6 months ago

1.6.8

6 months ago

1.6.7

6 months ago

1.6.6

6 months ago

1.6.5

6 months ago

1.6.4

6 months ago

1.6.3

6 months ago

1.6.2

6 months ago

1.6.1

6 months ago

1.6.0

6 months ago

1.5.32

6 months ago

1.5.31

6 months ago

1.5.30

6 months ago

1.5.29

6 months ago

1.5.28

6 months ago

1.5.27

6 months ago

1.5.26

6 months ago

1.5.25

6 months ago

1.5.24

6 months ago

1.5.23

6 months ago

1.5.22

6 months ago

1.5.21

6 months ago

1.5.20

6 months ago

1.5.19

6 months ago

1.5.18

6 months ago

1.5.17

6 months ago

1.5.16

6 months ago

1.5.15

6 months ago

1.5.14

6 months ago

1.5.13

6 months ago

1.5.12

6 months ago

1.5.11

6 months ago

1.5.10

6 months ago

1.5.9

6 months ago

1.5.8

6 months ago

1.5.7

6 months ago

1.5.6

6 months ago

1.5.5

6 months ago

1.5.4

6 months ago

1.5.3

6 months ago

1.5.2

6 months ago

1.5.1

6 months ago

1.5.0

6 months ago

1.4.0

6 months ago

1.3.0

6 months ago

1.2.0

6 months ago

1.1.0

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago