1.275.14 • Published 28 days ago

@storm-software/workspace-tools v1.275.14

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

Version Nx NextJs Commitizen friendly Semantic-Release documented with Fumadocs 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 available 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.

Table of Contents

Storm Workspace Tools

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

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:

Typia Executor

A type definition for a Typia executor schema

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
outputPath *stringThe output path for the build"{sourceRoot}/generated/typia"
entry *string[]The entry file or files to build[]
tsconfig *stringThe path to the tsconfig file"{projectRoot}/tsconfig.json"
cleanbooleanClean the output directory before buildingtrue

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

ESBuild Executor

A type definition for an ESBuild executor schema

Example

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

nx run my-project:esbuild

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

Options

The following executor options are available:

OptionTypeDescriptionDefault
outputPathstringThe output path for the build"dist/{projectRoot}"
entrystring[]The entry file or files to build[]
tsconfigstringThe path to the tsconfig file"{projectRoot}/tsconfig.json"
bundlebooleanBundle the output
minifybooleanMinify the output
debugbooleanDebug the output
sourcemapbooleanGenerate a sourcemap
silentbooleanShould the build run silently - only report errors back to the user
target"es3" | "es5" | "es6" | "es2015" | "es2016" | "es2017" | "es2018" | "es2019" | "es2020" | "es2021" | "es2022" | "es2023" | "es2024" | "esnext" | "node12" | "node14" | "node16" | "node18" | "node20" | "node22" | "browser" | "chrome58" | "chrome59" | "chrome60"The target to build"esnext"
format"cjs" | "esm" | "iife"The format to build"esm"
platform"neutral" | "node" | "browser"The platform to build"neutral"
externalany[]The external dependencies[]
defineobjectThe define values[object Object]
envobjectThe environment variable values[object Object]

Unbuild Executor

A type definition for a unbuild executor schema

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
outputPathstringThe output path for the build
entry *string[]The directory to use as input for the build[]
tsconfigstringThe path to the tsconfig file"{projectRoot}/tsconfig.json"
bundlebooleanBundle the output
minifybooleanMinify the output
debugbooleanDebug the output
sourcemapbooleanGenerate a sourcemap
silentbooleanShould the build run silently - only report errors back to the user
target"es3" | "es5" | "es6" | "es2015" | "es2016" | "es2017" | "es2018" | "es2019" | "es2020" | "es2021" | "es2022" | "es2023" | "es2024" | "esnext" | "node12" | "node14" | "node16" | "node18" | "node20" | "node22" | "browser" | "chrome58" | "chrome59" | "chrome60"The target to build"esnext"
formatstring[]The format to build[]
platform"neutral" | "node" | "browser"The platform to build"neutral"
externalany[]The external dependencies[]
defineobjectThe define values[object Object]
envobjectThe environment variable values[object Object]
name *stringThe name of the project/build"{projectName}"
treeShakingbooleanEnable tree shakingtrue
watchbooleanWatch for changes
cleanbooleanClean the output directory before buildingtrue
stubbooleanStub the output
buildOnlybooleanShould the build process skip generating a package.json and copying assets
watchOptionsobjectWatch options[object Object]
stubOptionsobjectStub options[object Object]
dependenciesstring[]The dependencies to install
peerDependenciesstring[]The peer dependencies to install
devDependenciesstring[]The dev dependencies to install
aliasobjectThe alias to use[object Object]
replaceobjectThe replace to use[object Object]
rollupobjectThe rollup options[object Object]

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

Clean Package Executor

The clean package executor is responsible for removing unnecessary files and fields from a distributable package to make it as light as possible (for scenarios like edge computing, limited memory environments, etc.)

Example

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

nx run my-project:clean-package

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

Options

The following executor options are available:

OptionTypeDescriptionDefault
outputPathstringThe path to the output"dist/{projectRoot}"
packageJsonPathstringThe path to the package.json that will be modified"{outputPath}/package.json"
ignoredFilesstringThe files to ignore
fieldsstringThe fields to include""
cleanReadMebooleanClean the read metrue
cleanCommentsbooleanClean the commentstrue

Size Limit Executor

A type definition for a Size Limit executor schema

Example

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

nx run my-project:size-limit

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

Options

The following executor options are available:

OptionTypeDescriptionDefault
outputPathstringThe output path for the build"dist/{projectRoot}"
entrystring[]The path to the entry file

Npm Publish Executor

A type definition for a Npm Publish executor schema

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.

Options

The following executor options are available:

OptionTypeDescriptionDefault
packageRootstringThe path to the package root
registrystringThe registry to publish to"https://registry.npmjs.org/"
tagstringThe tag to publish with"latest"
versionstringThe version to publish. If not provided, the version from package.json will be used
otpnumberThe one time password
dryRunbooleanPerform a dry run
firstReleasebooleanPublish the first release

Cargo Publish Executor

A type definition for a Cargo/rust Publish executor schema

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
outputPathstringThe output path for the build"dist/{projectRoot}"
packagestringThe path to the Cargo.toml file"{projectRoot}/Cargo.toml"
toolchain"stable" | "beta" | "nightly"The type of toolchain to use for the build"stable"
targetstringThe target to build
allTargetsbooleanBuild all targets
profilestringThe profile to build
releasebooleanBuild in release mode
featuresstringThe features to build
allFeaturesbooleanBuild all features
registrystringThe registry to publish to
packageRootstringThe path to the package root
dryRunbooleanPerform a dry run

Cargo Build Executor

A type definition for a Cargo/rust build executor schema

Example

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

nx run my-project:cargo-build

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

Options

The following executor options are available:

OptionTypeDescriptionDefault
outputPathstringThe path to the output directory
packagestringThe path to the Cargo.toml file"{projectRoot}/Cargo.toml"
toolchain"stable" | "beta" | "nightly"The type of toolchain to use for the build"stable"
targetstringThe target to build
allTargetsbooleanBuild all targets
profilestringThe profile to build
releasebooleanBuild in release mode
featuresstringThe features to build
allFeaturesbooleanBuild all features

Cargo Check Executor

A type definition for a Cargo/rust check executor schema

Example

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

nx run my-project:cargo-check

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

Options

The following executor options are available:

OptionTypeDescriptionDefault
outputPathstringThe output path for the build"dist/{projectRoot}"
packagestringThe path to the Cargo.toml file"{projectRoot}/Cargo.toml"
toolchain"stable" | "beta" | "nightly"The type of toolchain to use for the build"stable"
targetstringThe target to build
allTargetsbooleanBuild all targets
profilestringThe profile to build
releasebooleanBuild in release mode
featuresstringThe features to build
allFeaturesbooleanBuild all features

Cargo Format Executor

A type definition for a Cargo/rust format executor schema

Example

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

nx run my-project:cargo-format

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

Options

The following executor options are available:

OptionTypeDescriptionDefault
outputPathstringThe output path for the build"dist/{projectRoot}"
packagestringThe path to the Cargo.toml file"{projectRoot}/Cargo.toml"
toolchain"stable" | "beta" | "nightly"The type of toolchain to use for the build"stable"
targetstringThe target to build
allTargetsbooleanBuild all targets
profilestringThe profile to build
releasebooleanBuild in release mode
featuresstringThe features to build
allFeaturesbooleanBuild all features

Cargo Clippy Executor

A type definition for a Cargo/rust clippy executor schema

Example

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

nx run my-project:cargo-clippy

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

Options

The following executor options are available:

OptionTypeDescriptionDefault
outputPathstringThe output path for the build"dist/{projectRoot}"
packagestringThe path to the Cargo.toml file"{projectRoot}/Cargo.toml"
toolchain"stable" | "beta" | "nightly"The type of toolchain to use for the build"stable"
targetstringThe target to build
allTargetsbooleanBuild all targets
profilestringThe profile to build
releasebooleanBuild in release mode
featuresstringThe features to build
allFeaturesbooleanBuild all features
fixbooleanAutomatically fix issues

Cargo Doc Executor

A type definition for a Cargo/rust documentation executor schema

Example

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

nx run my-project:cargo-doc

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

Options

The following executor options are available:

OptionTypeDescriptionDefault
outputPathstringThe output path for the build"dist/{projectRoot}"
packagestringThe path to the Cargo.toml file"{projectRoot}/Cargo.toml"
toolchain"stable" | "beta" | "nightly"The type of toolchain to use for the build"stable"
targetstringThe target to build
allTargetsbooleanBuild all targets
profilestringThe profile to build
releasebooleanBuild in release mode
featuresstringThe features to build
allFeaturesbooleanBuild all features
libbooleanGenerate documentation for the library[object Object]
binsbooleanGenerate documentation for the bins[object Object]
examplesbooleanGenerate documentation for the examples[object Object]
noDepsbooleanDo not generate documentation for dependencies[object Object]

Generators

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

Init Generator

A type definition for an init generator schema

Options

The following executor options are available:

OptionTypeDescriptionDefault
skipFormatbooleanSkip formatting the generated files

Preset Generator

A type definition for a preset generator schema

Options

The following executor options are available:

OptionTypeDescriptionDefault
directory *stringThe directory to create the library in
name *stringThe name of the workspace
organizationstringThe organization of the workspace"storm-software"
includeAppsbooleanInclude apps in the workspacetrue
includeRustbooleanInclude Rust support in the workspace
namespacestringThe namespace of the workspace"storm-software"
descriptionstringThe description of the workspace
repositoryUrlstringThe URL of the repository
nxCloudstringNx Cloud configuration
modestringThe mode of the Nx client
packageManager"npm" | "pnpm" | "yarn" | "bun"The package manager to use"pnpm"

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

Node Library Generator

A type definition for a NodeJs library generator schema

Options

The following executor options are available:

OptionTypeDescriptionDefault
directory *stringThe directory to create the library in
name *stringThe name of the library
descriptionstringThe description of the library
buildExecutorstringThe executor to use for building the library"@storm-software/workspace-tools:unbuild"
platform"node" | "neutral"The platform to target with the library"node"
importPathstringThe import path for the library
tagsstringThe tags for the library
unitTestRunner"jest" | "vitest" | "none"The unit test runner to use
testEnvironment"jsdom" | "node"The test environment to use
pascalCaseFilesbooleanUse PascalCase for file names
strictbooleanEnable strict modetrue
publishablebooleanMake the library publishable
buildablebooleanMake the library buildabletrue

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

Config Schema Generator

A type definition for a config schema generator schema

Options

The following executor options are available:

OptionTypeDescriptionDefault
directorystringThe directory to create the library in
outputFilestringThe file to write the schema to"{workspaceRoot}/storm-workspace.schema.json"

Neutral Library Generator

A type definition for a neutral library generator schema

Options

The following executor options are available:

OptionTypeDescriptionDefault
directory *stringThe directory to create the library in
name *stringThe name of the library
descriptionstringThe description of the library
buildExecutorstringThe executor to use for building the library"@storm-software/workspace-tools:unbuild"
platform"neutral"The platform to target with the library"neutral"
importPathstringThe import path for the library
tagsstringThe tags for the library
unitTestRunner"jest" | "vitest" | "none"The unit test runner to use
testEnvironment"jsdom" | "node"The test environment to use
pascalCaseFilesbooleanUse PascalCase for file names
strictbooleanEnable strict modetrue
publishablebooleanMake the library publishable
buildablebooleanMake the library buildabletrue

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

Browser Library Generator

A type definition for a browser library generator schema

Options

The following executor options are available:

OptionTypeDescriptionDefault
directory *stringThe directory to create the library in
name *stringThe name of the library
descriptionstringThe description of the library
buildExecutorstringThe executor to use for building the library"@storm-software/workspace-tools:unbuild"
platform"browser" | "neutral"The platform to target with the library"browser"
importPathstringThe import path for the library
tagsstringThe tags for the library
unitTestRunner"jest" | "vitest" | "none"The unit test runner to use
testEnvironment"jsdom" | "node"The test environment to use
pascalCaseFilesbooleanUse PascalCase for file names
strictbooleanEnable strict modetrue
publishablebooleanMake the library publishable
buildablebooleanMake the library buildabletrue

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

Release Version Generator

A type definition for a release version generator schema

Options

The following executor options are available:

OptionTypeDescriptionDefault
projects *object[]The projects to release
releaseGroup *objectThe release group[object Object]
projectGraph *objectThe project graph[object Object]
specifier *stringThe specifier
specifierSourcestringThe specifier source
preidstringThe preid
packageRootstringThe package root
currentVersionResolverstringThe current version resolver"git-tag"
currentVersionResolverMetadataobjectThe current version resolver metadata[object Object]
fallbackCurrentVersionResolverstringThe fallback current version resolver"disk"
firstReleasebooleanRelease the first version
versionPrefix"" | "auto" | "~" | "^" | "="The version prefix
skipLockFileUpdatebooleanSkip lock file update
installArgsstringThe install arguments
installIgnoreScriptsbooleanIgnore scripts
conventionalCommitsConfigobjectThe conventional commits config[object Object]
deleteVersionPlansbooleanDelete version plans
updateDependentsstringUpdate dependents
logUnchangedProjectsbooleanLog unchanged projects
preserveLocalDependencyProtocolsbooleanPreserve local dependency protocols

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.

Join us on Discord to chat with the team, receive release notifications, ask questions, and get involved.

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 or join our Slack channel!

1.266.0

3 months ago

1.266.6

3 months ago

1.266.5

3 months ago

1.266.2

3 months ago

1.266.1

3 months ago

1.266.4

3 months ago

1.266.3

3 months ago

1.266.9

3 months ago

1.268.4

2 months ago

1.268.5

2 months ago

1.274.1

2 months ago

1.274.0

2 months ago

1.274.3

2 months ago

1.274.2

2 months ago

1.274.8

1 month ago

1.274.5

2 months ago

1.274.4

2 months ago

1.274.7

1 month ago

1.274.6

1 month ago

1.264.27

3 months ago

1.264.18

4 months ago

1.264.19

4 months ago

1.264.23

3 months ago

1.264.24

3 months ago

1.264.25

3 months ago

1.264.26

3 months ago

1.264.20

4 months ago

1.264.21

4 months ago

1.264.22

4 months ago

1.270.1

2 months ago

1.270.0

2 months ago

1.270.2

2 months ago

1.266.10

2 months ago

1.272.1

2 months ago

1.272.0

2 months ago

1.269.1

2 months ago

1.269.0

2 months ago

1.267.9

2 months ago

1.267.8

2 months ago

1.265.1

3 months ago

1.265.0

3 months ago

1.265.7

3 months ago

1.265.6

3 months ago

1.265.9

3 months ago

1.265.8

3 months ago

1.265.3

3 months ago

1.265.2

3 months ago

1.265.5

3 months ago

1.265.4

3 months ago

1.273.10

2 months ago

1.267.5

2 months ago

1.267.4

2 months ago

1.267.7

2 months ago

1.267.6

2 months ago

1.267.1

2 months ago

1.267.0

2 months ago

1.267.3

2 months ago

1.267.2

2 months ago

1.273.2

2 months ago

1.273.1

2 months ago

1.273.4

2 months ago

1.273.3

2 months ago

1.273.0

2 months ago

1.273.9

2 months ago

1.273.6

2 months ago

1.273.5

2 months ago

1.273.7

2 months ago

1.275.13

1 month ago

1.275.12

1 month ago

1.275.14

28 days ago

1.275.11

1 month ago

1.275.10

1 month ago

1.275.0

1 month ago

1.275.2

1 month ago

1.275.1

1 month ago

1.275.8

1 month ago

1.275.7

1 month ago

1.275.9

1 month ago

1.275.4

1 month ago

1.275.3

1 month ago

1.275.6

1 month ago

1.275.5

1 month ago

1.265.12

3 months ago

1.265.11

3 months ago

1.265.10

3 months ago

1.265.14

3 months ago

1.265.13

3 months ago

1.267.19

2 months ago

1.271.0

2 months ago

1.271.2

2 months ago

1.271.1

2 months ago

1.267.20

2 months ago

1.267.21

2 months ago

1.267.22

2 months ago

1.267.10

2 months ago

1.267.13

2 months ago

1.267.14

2 months ago

1.267.11

2 months ago

1.267.12

2 months ago

1.267.17

2 months ago

1.267.18

2 months ago

1.267.15

2 months ago

1.267.16

2 months ago

1.264.12

4 months ago

1.264.13

4 months ago

1.264.14

4 months ago

1.264.15

4 months ago

1.264.10

4 months ago

1.264.11

4 months ago

1.264.16

4 months ago

1.264.17

4 months ago

1.264.2

4 months ago

1.264.8

4 months ago

1.264.7

4 months ago

1.264.9

4 months ago

1.264.4

4 months ago

1.264.3

4 months ago

1.264.6

4 months ago

1.264.5

4 months ago

1.261.1

4 months ago

1.261.0

4 months ago

1.263.1

4 months ago

1.263.0

4 months ago

1.263.2

4 months ago

1.262.0

4 months ago

1.264.0

4 months ago

1.264.1

4 months ago

1.259.3

5 months ago

1.259.4

5 months ago

1.259.1

5 months ago

1.259.2

5 months ago

1.259.0

5 months ago

1.248.5

5 months ago

1.224.2

6 months ago

1.224.1

6 months ago

1.224.0

6 months ago

1.259.7

4 months ago

1.259.5

5 months ago

1.259.6

4 months ago

1.235.3

6 months ago

1.235.2

6 months ago

1.235.1

6 months ago

1.235.0

6 months ago

1.246.3

5 months ago

1.246.4

5 months ago

1.246.1

5 months ago

1.246.2

5 months ago

1.246.0

5 months ago

1.226.3

6 months ago

1.226.2

6 months ago

1.226.1

6 months ago

1.226.0

6 months ago

1.237.1

6 months ago

1.237.0

6 months ago

1.202.0

7 months ago

1.202.1

7 months ago

1.247.13

5 months ago

1.248.3

5 months ago

1.247.11

5 months ago

1.248.4

5 months ago

1.247.12

5 months ago

1.248.2

5 months ago

1.247.10

5 months ago

1.255.0

5 months ago

1.231.0

6 months ago

1.242.0

6 months ago

1.233.0

6 months ago

1.233.2

6 months ago

1.233.1

6 months ago

1.244.0

5 months ago

1.250.4

5 months ago

1.250.5

5 months ago

1.250.2

5 months ago

1.250.3

5 months ago

1.250.0

5 months ago

1.250.1

5 months ago

1.208.0

7 months ago

1.198.1

8 months ago

1.198.0

8 months ago

1.230.1

6 months ago

1.230.0

6 months ago

1.241.0

6 months ago

1.252.2

5 months ago

1.252.3

5 months ago

1.252.0

5 months ago

1.252.1

5 months ago

1.252.4

5 months ago

1.228.1

6 months ago

1.228.0

6 months ago

1.239.2

6 months ago

1.239.1

6 months ago

1.239.0

6 months ago

1.204.0

7 months ago

1.239.6

6 months ago

1.239.5

6 months ago

1.239.4

6 months ago

1.239.3

6 months ago

1.206.0

7 months ago

1.196.0

8 months ago

1.236.0

6 months ago

1.201.0

7 months ago

1.201.1

7 months ago

1.201.2

7 months ago

1.201.3

7 months ago

1.247.4

5 months ago

1.247.5

5 months ago

1.247.2

5 months ago

1.247.3

5 months ago

1.247.0

5 months ago

1.247.1

5 months ago

1.258.4

5 months ago

1.258.5

5 months ago

1.258.2

5 months ago

1.258.3

5 months ago

1.247.8

5 months ago

1.247.9

5 months ago

1.247.6

5 months ago

1.247.7

5 months ago

1.223.3

6 months ago

1.223.2

6 months ago

1.223.1

6 months ago

1.223.0

6 months ago

1.258.8

5 months ago

1.258.6

5 months ago

1.258.7

5 months ago

1.238.0

6 months ago

1.227.4

6 months ago

1.203.0

7 months ago

1.249.2

5 months ago

1.249.3

5 months ago

1.249.0

5 months ago

1.249.1

5 months ago

1.249.8

5 months ago

1.249.6

5 months ago

1.249.7

5 months ago

1.249.4

5 months ago

1.249.5

5 months ago

1.225.0

6 months ago

1.232.0

6 months ago

1.243.0

6 months ago

1.243.2

5 months ago

1.243.3

5 months ago

1.254.0

5 months ago

1.254.1

5 months ago

1.254.8

5 months ago

1.254.6

5 months ago

1.254.7

5 months ago

1.254.4

5 months ago

1.254.5

5 months ago

1.254.2

5 months ago

1.254.3

5 months ago

1.234.2

6 months ago

1.234.1

6 months ago

1.234.0

6 months ago

1.245.6

5 months ago

1.245.7

5 months ago

1.245.4

5 months ago

1.245.5

5 months ago

1.245.2

5 months ago

1.245.3

5 months ago

1.245.0

5 months ago

1.245.1

5 months ago

1.210.2

7 months ago

1.210.3

6 months ago

1.256.0

5 months ago

1.210.0

7 months ago

1.210.1

7 months ago

1.251.1

5 months ago

1.251.0

5 months ago

1.209.0

7 months ago

1.209.1

7 months ago

1.209.2

7 months ago

1.253.0

5 months ago

1.240.3

6 months ago

1.240.4

6 months ago

1.240.1

6 months ago

1.240.2

6 months ago

1.240.0

6 months ago

1.205.0

7 months ago

1.227.3

6 months ago

1.227.2

6 months ago

1.227.1

6 months ago

1.227.0

6 months ago

1.260.0

4 months ago

1.207.0

7 months ago

1.207.1

7 months ago

1.197.0

8 months ago

1.207.2

7 months ago

1.207.3

7 months ago

1.207.4

7 months ago

1.229.1

6 months ago

1.229.0

6 months ago

1.195.0

8 months ago

1.192.0

9 months ago

1.192.1

9 months ago

1.194.0

9 months ago

1.193.0

9 months ago

1.193.1

9 months ago

1.190.3

9 months ago

1.190.4

9 months ago

1.191.0

9 months ago

1.191.1

9 months ago

1.191.2

9 months ago

1.126.0

12 months ago

1.115.0

12 months ago

1.83.0

1 year ago

1.148.0

11 months ago

1.190.1

10 months ago

1.190.2

10 months ago

1.190.0

10 months ago

1.137.1

11 months ago

1.137.0

11 months ago

1.181.0

10 months ago

1.181.1

10 months ago

1.128.1

12 months ago

1.128.0

12 months ago

1.128.2

12 months ago

1.170.0

10 months ago

1.117.0

12 months ago

1.85.0

1 year ago

1.139.1

11 months ago

1.139.0

11 months ago

1.122.0

12 months ago

1.168.0

10 months ago

1.111.0

1 year ago

1.157.0

11 months ago

1.76.2

1 year ago

1.76.3

1 year ago

1.179.9

10 months ago

1.179.8

10 months ago

1.144.0

11 months ago

1.87.0

1 year ago

1.133.1

11 months ago

1.133.0

11 months ago

1.179.3

10 months ago

1.179.2

10 months ago

1.179.1

10 months ago

1.179.7

10 months ago

1.179.6

10 months ago

1.179.5

10 months ago

1.179.4

10 months ago

1.124.0

12 months ago

1.89.2

1 year ago

1.89.1

1 year ago

1.89.0

1 year ago

1.159.0

11 months ago

1.113.0

12 months ago

1.159.1

11 months ago

1.78.0

1 year ago

1.146.0

11 months ago

1.135.0

11 months ago

1.79.0

1 year ago

1.187.0

10 months ago

1.141.0

11 months ago

1.176.0

10 months ago

1.130.0

12 months ago

1.163.0

10 months ago

1.152.0

11 months ago

1.143.0

11 months ago

1.143.1

11 months ago

1.189.0

10 months ago

1.132.0

11 months ago

1.178.0

10 months ago

1.178.1

10 months ago

1.165.2

10 months ago

1.165.1

10 months ago

1.165.0

10 months ago

1.165.3

10 months ago

1.154.0

11 months ago

1.90.1

1 year ago

1.90.0

1 year ago

1.183.2

10 months ago

1.183.1

10 months ago

1.183.0

10 months ago

1.172.1

10 months ago

1.172.0

10 months ago

1.119.0

12 months ago

1.106.0

1 year ago

1.106.1

1 year ago

1.185.0

10 months ago

1.185.1

10 months ago

1.174.0

10 months ago

1.174.1

10 months ago

1.161.1

11 months ago

1.161.0

11 months ago

1.108.0

1 year ago

1.150.0

11 months ago

1.82.0

1 year ago

1.82.1

1 year ago

1.149.0

11 months ago

1.138.0

11 months ago

1.125.0

12 months ago

1.114.0

12 months ago

1.105.1

1 year ago

1.84.0

1 year ago

1.105.0

1 year ago

1.180.1

10 months ago

1.180.0

10 months ago

1.180.5

10 months ago

1.180.4

10 months ago

1.180.3

10 months ago

1.180.2

10 months ago

1.180.9

10 months ago

1.180.8

10 months ago

1.180.7

10 months ago

1.180.6

10 months ago

1.127.0

12 months ago

1.116.0

12 months ago

1.145.0

11 months ago

1.86.0

1 year ago

1.134.0

11 months ago

1.134.2

11 months ago

1.134.1

11 months ago

1.134.3

11 months ago

1.121.0

12 months ago

1.167.0

10 months ago

1.167.1

10 months ago

1.156.0

11 months ago

1.110.0

1 year ago

1.147.0

11 months ago

1.147.1

11 months ago

1.88.0

1 year ago

1.88.1

1 year ago

1.136.0

11 months ago

1.123.0

12 months ago

1.169.0

10 months ago

1.112.0

12 months ago

1.158.0

11 months ago

1.158.1

11 months ago

1.77.0

1 year ago

1.164.2

10 months ago

1.164.1

10 months ago

1.164.0

10 months ago

1.180.10

10 months ago

1.153.0

11 months ago

1.186.2

10 months ago

1.186.3

10 months ago

1.186.0

10 months ago

1.140.0

11 months ago

1.186.1

10 months ago

1.186.6

10 months ago

1.186.7

10 months ago

1.186.4

10 months ago

1.186.5

10 months ago

1.175.3

10 months ago

1.175.2

10 months ago

1.175.1

10 months ago

1.175.0

10 months ago

1.175.6

10 months ago

1.175.5

10 months ago

1.175.4

10 months ago

1.120.0

12 months ago

1.166.1

10 months ago

1.166.0

10 months ago

1.179.11

10 months ago

1.179.12

10 months ago

1.179.13

10 months ago

1.155.0

11 months ago

1.179.14

10 months ago

1.179.15

10 months ago

1.179.10

10 months ago

1.142.0

11 months ago

1.188.0

10 months ago

1.131.0

12 months ago

1.177.1

10 months ago

1.177.0

10 months ago

1.177.2

10 months ago

1.160.0

11 months ago

1.107.1

1 year ago

1.107.2

1 year ago

1.107.0

1 year ago

1.182.3

10 months ago

1.182.2

10 months ago

1.182.1

10 months ago

1.182.0

10 months ago

1.182.6

10 months ago

1.182.5

10 months ago

1.182.4

10 months ago

1.129.0

12 months ago

1.129.2

12 months ago

1.129.1

12 months ago

1.171.0

10 months ago

1.118.0

12 months ago

1.162.1

11 months ago

1.162.0

11 months ago

1.80.0

1 year ago

1.109.0

1 year ago

1.151.0

11 months ago

1.184.0

10 months ago

1.184.1

10 months ago

1.184.2

10 months ago

1.184.3

10 months ago

1.173.0

10 months ago

1.76.0

1 year ago

1.76.1

1 year ago

1.75.0

1 year ago

1.74.0

1 year ago

1.73.2

1 year ago

1.73.1

1 year ago

1.73.0

1 year ago

1.72.3

1 year ago

1.72.2

1 year ago

1.72.1

1 year ago

1.72.0

1 year ago

1.71.1

1 year ago

1.70.0

1 year ago

1.70.1

1 year ago

1.71.0

1 year ago

1.68.10

1 year ago

1.68.11

1 year ago

1.69.0

1 year ago

1.68.1

1 year ago

1.68.2

1 year ago

1.68.3

1 year ago

1.68.4

1 year ago

1.68.5

1 year ago

1.68.6

1 year ago

1.68.7

1 year ago

1.68.8

1 year ago

1.68.9

1 year ago

1.67.0

1 year ago

1.68.0

1 year ago

1.66.30

1 year ago

1.66.29

1 year ago

1.66.28

1 year ago

1.66.27

1 year ago

1.66.2

1 year ago

1.66.3

1 year ago

1.66.4

1 year ago

1.66.5

1 year ago

1.66.6

1 year ago

1.66.7

1 year ago

1.66.8

1 year ago

1.66.9

1 year ago

1.66.19

1 year ago

1.66.18

1 year ago

1.66.15

1 year ago

1.66.14

1 year ago

1.66.17

1 year ago

1.66.16

1 year ago

1.66.11

1 year ago

1.66.10

1 year ago

1.66.13

1 year ago

1.66.12

1 year ago

1.66.22

1 year ago

1.66.21

1 year ago

1.66.23

1 year ago

1.66.20

1 year ago

1.66.1

1 year ago

1.66.0

1 year ago

1.65.5

1 year ago

1.65.6

1 year ago

1.65.4

1 year ago

1.65.0

1 year ago

1.65.1

1 year ago

1.65.2

1 year ago

1.65.3

1 year ago

1.63.3

1 year ago

1.63.4

1 year ago

1.63.5

1 year ago

1.63.6

1 year ago

1.64.0

1 year ago

1.62.39

1 year ago

1.62.38

1 year ago

1.62.37

1 year ago

1.62.36

1 year ago

1.62.35

1 year ago

1.62.34

1 year ago

1.62.33

1 year ago

1.62.32

1 year ago

1.62.31

1 year ago

1.63.0

1 year ago

1.63.1

1 year ago

1.63.2

1 year ago

1.62.30

1 year ago

1.62.19

1 year ago

1.62.18

1 year ago

1.62.17

1 year ago

1.62.16

1 year ago

1.62.29

1 year ago

1.62.28

1 year ago

1.62.27

1 year ago

1.62.26

1 year ago

1.62.25

1 year ago

1.62.24

1 year ago

1.62.23

1 year ago

1.62.22

1 year ago

1.62.21

1 year ago

1.62.20

1 year ago

1.61.0

1 year ago

1.62.15

1 year ago

1.62.14

1 year ago

1.62.13

1 year ago

1.62.12

1 year ago

1.62.11

1 year ago

1.62.10

1 year ago

1.62.0

1 year ago

1.62.2

1 year ago

1.62.1

1 year ago

1.62.4

1 year ago

1.62.3

1 year ago

1.62.6

1 year ago

1.62.5

1 year ago

1.62.8

1 year ago

1.62.7

1 year ago

1.62.9

1 year ago

1.60.23

1 year ago

1.60.6

1 year ago

1.60.5

1 year ago

1.60.8

1 year ago

1.60.7

1 year ago

1.60.9

1 year ago

1.60.20

1 year ago

1.60.21

1 year ago

1.60.22

1 year ago

1.60.10

1 year ago

1.60.11

1 year ago

1.60.12

1 year ago

1.60.13

1 year ago

1.60.14

1 year ago

1.60.15

1 year ago

1.60.16

1 year ago

1.60.17

1 year ago

1.60.18

1 year ago

1.60.19

1 year ago

1.60.4

1 year ago

1.59.11

1 year ago

1.56.14

1 year ago

1.56.13

1 year ago

1.56.12

1 year ago

1.56.5

1 year ago

1.56.9

1 year ago

1.56.10

1 year ago

1.56.11

1 year ago

1.56.1

1 year ago

1.56.3

1 year ago

1.56.2

1 year ago

1.56.4

1 year ago

1.56.0

1 year ago

1.54.2

1 year ago

1.55.2

1 year ago

1.55.1

1 year ago

1.55.0

1 year ago

1.53.1

1 year ago

1.54.1

1 year ago

1.54.0

1 year ago

1.53.0

1 year ago

1.52.7

1 year ago

1.52.6

1 year ago

1.52.16

1 year ago

1.52.15

1 year ago

1.52.17

1 year ago

1.52.12

1 year ago

1.52.11

1 year ago

1.52.13

1 year ago

1.52.10

1 year ago

1.52.5

1 year ago

1.52.4

1 year ago

1.52.1

1 year ago

1.52.0

1 year ago

1.52.3

1 year ago

1.52.2

1 year ago

1.49.30

1 year ago

1.49.31

1 year ago

1.49.26

1 year ago

1.49.27

1 year ago

1.49.28

1 year ago

1.49.29

1 year ago

1.49.20

1 year ago

1.49.21

1 year ago

1.49.22

1 year ago

1.49.23

1 year ago

1.49.24

1 year ago

1.49.25

1 year ago

1.49.16

1 year ago

1.49.17

1 year ago

1.49.18

1 year ago

1.49.19

1 year ago

1.50.1

1 year ago

1.50.0

1 year ago

1.50.3

1 year ago

1.50.2

1 year ago

1.50.5

1 year ago

1.50.4

1 year ago

1.51.0

1 year ago

1.51.2

1 year ago

1.51.1

1 year ago

1.49.15

1 year ago

1.49.11

1 year ago

1.49.12

1 year ago

1.49.13

1 year ago

1.49.14

1 year ago

1.49.10

1 year ago

1.49.5

1 year ago

1.49.4

1 year ago

1.49.7

1 year ago

1.49.6

1 year ago

1.49.9

1 year ago

1.49.8

1 year ago

1.48.6

1 year ago

1.48.5

1 year ago

1.48.7

1 year ago

1.49.1

1 year ago

1.49.0

1 year ago

1.49.3

1 year ago

1.49.2

1 year ago

1.46.0

1 year ago

1.46.1

1 year ago

1.47.0

1 year ago

1.48.0

1 year ago

1.45.3

1 year ago

1.45.2

1 year ago

1.44.0

1 year ago

1.45.1

1 year ago

1.45.0

1 year ago

1.43.21

1 year ago

1.43.20

1 year ago

1.43.19

1 year ago

1.43.18

1 year ago

1.43.17

1 year ago

1.43.12

1 year ago

1.43.11

1 year ago

1.43.10

1 year ago

1.43.16

1 year ago

1.43.15

1 year ago

1.43.14

1 year ago

1.43.13

1 year ago

1.43.9

1 year ago

1.43.3

1 year ago

1.43.5

1 year ago

1.43.4

1 year ago

1.43.7

1 year ago

1.43.6

1 year ago

1.43.8

1 year ago

1.40.0

1 year ago

1.40.1

1 year ago

1.41.1

1 year ago

1.41.0

1 year ago

1.42.0

1 year ago

1.42.2

1 year ago

1.42.1

1 year ago

1.42.4

1 year ago

1.42.3

1 year ago

1.43.1

1 year ago

1.43.0

1 year ago

1.43.2

1 year ago

1.39.0

1 year ago

1.38.1

1 year ago

1.38.0

1 year ago

1.36.7

2 years ago

1.37.0

2 years ago

1.37.1

2 years ago

1.36.1

2 years ago

1.36.4

2 years ago

1.36.5

2 years ago

1.36.2

2 years ago

1.36.3

2 years ago

1.36.6

2 years ago

1.36.0

2 years ago

1.35.5

2 years ago

1.35.4

2 years ago

1.34.2

2 years ago

1.35.1

2 years ago

1.35.2

2 years ago

1.35.0

2 years ago

1.35.3

2 years ago

1.33.1

2 years ago

1.34.0

2 years ago

1.34.1

2 years ago

1.32.1

2 years ago

1.33.0

2 years ago

1.32.0

2 years ago

1.31.16

2 years ago

1.31.17

2 years ago

1.31.10

2 years ago

1.31.11

2 years ago

1.31.14

2 years ago

1.31.15

2 years ago

1.31.12

2 years ago

1.31.13

2 years ago

1.31.6

2 years ago

1.31.9

2 years ago

1.31.7

2 years ago

1.31.8

2 years ago

1.31.5

2 years ago

1.31.4

2 years ago

1.31.3

2 years ago

1.31.1

2 years ago

1.31.2

2 years ago

1.30.10

2 years ago

1.30.13

2 years ago

1.30.14

2 years ago

1.30.11

2 years ago

1.30.12

2 years ago

1.31.0

2 years ago

1.30.8

2 years ago

1.30.9

2 years ago

1.30.6

2 years ago

1.30.7

2 years ago

1.30.4

2 years ago

1.30.5

2 years ago

1.29.0

2 years ago

1.24.1

2 years ago

1.24.2

2 years ago

1.25.0

2 years ago

1.26.0

2 years ago

1.26.1

2 years ago

1.27.0

2 years ago

1.30.2

2 years ago

1.30.3

2 years ago

1.30.0

2 years ago

1.30.1

2 years ago

1.28.0

2 years ago

1.23.0

2 years ago

1.23.1

2 years ago

1.24.0

2 years ago

1.22.2

2 years ago

1.22.0

2 years ago

1.22.1

2 years ago

1.21.19

2 years ago

1.21.17

2 years ago

1.21.18

2 years ago

1.21.16

2 years ago

1.21.15

2 years ago

1.21.14

2 years ago

1.21.13

2 years ago

1.21.12

2 years ago

1.21.11

2 years ago

1.21.10

2 years ago

1.21.9

2 years ago

1.21.8

2 years ago

1.21.7

2 years ago

1.21.6

2 years ago

1.21.5

2 years ago

1.21.4

2 years ago

1.21.3

2 years ago

1.21.2

2 years ago

1.21.1

2 years ago

1.21.0

2 years ago

1.20.1

2 years ago

1.20.0

2 years ago

1.19.3

2 years ago

1.19.2

2 years ago

1.19.1

2 years ago

1.19.0

2 years ago

1.18.0

2 years ago

1.17.1

2 years ago

1.17.0

2 years ago

1.16.17

2 years ago

1.16.16

2 years ago

1.16.15

2 years ago

1.16.14

2 years ago

1.16.13

2 years ago

1.16.12

2 years ago

1.16.11

2 years ago

1.16.10

2 years ago

1.16.9

2 years ago

1.16.8

2 years ago

1.16.7

2 years ago

1.16.6

2 years ago

1.16.5

2 years ago

1.16.4

2 years ago

1.16.3

2 years ago

1.16.2

2 years ago

1.16.1

2 years ago

1.16.0

2 years ago

1.15.3

2 years ago

1.15.2

2 years ago

1.15.1

2 years ago

1.15.0

2 years ago

1.14.2

2 years ago

1.14.1

2 years ago

1.14.0

2 years ago

1.13.26

2 years ago

1.13.25

2 years ago

1.13.24

2 years ago

1.13.23

2 years ago

1.13.22

2 years ago

1.13.21

2 years ago

1.13.20

2 years ago

1.13.19

2 years ago

1.13.18

2 years ago

1.13.17

2 years ago

1.13.16

2 years ago

1.13.15

2 years ago

1.13.14

2 years ago

1.13.13

2 years ago

1.13.12

2 years ago

1.13.11

2 years ago

1.13.10

2 years ago

1.13.9

2 years ago

1.13.8

2 years ago

1.13.7

2 years ago

1.13.6

2 years ago

1.13.5

2 years ago

1.13.4

2 years ago

1.13.3

2 years ago

1.13.2

2 years ago

1.13.1

2 years ago

1.13.0

2 years ago

1.12.6

2 years ago

1.12.5

2 years ago

1.12.4

2 years ago

1.12.3

2 years ago

1.12.2

2 years ago

1.12.1

2 years ago

1.12.0

2 years ago

1.11.1

2 years ago

1.11.0

2 years ago

1.10.20

2 years ago

1.10.19

2 years ago

1.10.18

2 years ago

1.10.17

2 years ago

1.10.16

2 years ago

1.10.15

2 years ago

1.10.14

2 years ago

1.10.13

2 years ago

1.10.12

2 years ago

1.10.11

2 years ago

1.10.10

2 years ago

1.10.9

2 years ago

1.10.8

2 years ago

1.10.7

2 years ago

1.10.6

2 years ago

1.10.5

2 years ago

1.10.4

2 years ago

1.10.3

2 years ago

1.10.2

2 years ago

1.10.1

2 years ago

1.10.0

2 years ago

1.9.0

2 years ago

1.8.5

2 years ago

1.8.4

2 years ago

1.8.3

2 years ago

1.8.2

2 years ago

1.8.1

2 years ago

1.8.0

2 years ago

1.7.37

2 years ago

1.7.36

2 years ago

1.7.35

2 years ago

1.7.34

2 years ago

1.7.33

2 years ago

1.7.32

2 years ago

1.7.31

2 years ago

1.7.30

2 years ago

1.7.29

2 years ago

1.7.28

2 years ago

1.7.27

2 years ago

1.7.26

2 years ago

1.7.25

2 years ago

1.7.24

2 years ago

1.7.23

2 years ago

1.7.22

2 years ago

1.7.21

2 years ago

1.7.20

2 years ago

1.7.19

2 years ago

1.7.18

2 years ago

1.7.17

2 years ago

1.7.16

2 years ago

1.7.15

2 years ago

1.7.14

2 years ago

1.7.13

2 years ago

1.7.12

2 years ago

1.7.11

2 years ago

1.7.10

2 years ago

1.7.9

2 years ago

1.7.8

2 years ago

1.7.7

2 years ago

1.7.6

2 years ago

1.7.5

2 years ago

1.7.4

2 years ago

1.7.3

2 years ago

1.7.2

2 years ago

1.7.1

2 years ago

1.7.0

2 years ago

1.6.58

2 years ago

1.6.57

2 years ago

1.6.56

2 years ago

1.6.55

2 years ago

1.6.54

2 years ago

1.6.53

2 years ago

1.6.52

2 years ago

1.6.51

2 years ago

1.6.50

2 years ago

1.6.49

2 years ago

1.6.48

2 years ago

1.6.47

2 years ago

1.6.46

2 years ago

1.6.45

2 years ago

1.6.44

2 years ago

1.6.43

2 years ago

1.6.42

2 years ago

1.6.41

2 years ago

1.6.40

2 years ago

1.6.39

2 years ago

1.6.38

2 years ago

1.6.37

2 years ago

1.6.36

2 years ago

1.6.35

2 years ago

1.6.34

2 years ago

1.6.33

2 years ago

1.6.32

2 years ago

1.6.31

2 years ago

1.6.30

2 years ago

1.6.29

2 years ago

1.6.28

2 years ago

1.6.27

2 years ago

1.6.26

2 years ago

1.6.25

2 years ago

1.6.24

2 years ago

1.6.23

2 years ago

1.6.22

2 years ago

1.6.21

2 years ago

1.6.20

2 years ago

1.6.19

2 years ago

1.6.18

2 years ago

1.6.17

2 years ago

1.6.16

2 years ago

1.6.15

2 years ago

1.6.14

2 years ago

1.6.13

2 years ago

1.6.12

2 years ago

1.6.11

2 years ago

1.6.10

2 years ago

1.6.9

2 years ago

1.6.8

2 years ago

1.6.7

2 years ago

1.6.6

2 years ago

1.6.5

2 years ago

1.6.4

2 years ago

1.6.3

2 years ago

1.6.2

2 years ago

1.6.1

2 years ago

1.6.0

2 years ago

1.5.32

2 years ago

1.5.31

2 years ago

1.5.30

2 years ago

1.5.29

2 years ago

1.5.28

2 years ago

1.5.27

2 years ago

1.5.26

2 years ago

1.5.25

2 years ago

1.5.24

2 years ago

1.5.23

2 years ago

1.5.22

2 years ago

1.5.21

2 years ago

1.5.20

2 years ago

1.5.19

2 years ago

1.5.18

2 years ago

1.5.17

2 years ago

1.5.16

2 years ago

1.5.15

2 years ago

1.5.14

2 years ago

1.5.13

2 years ago

1.5.12

2 years ago

1.5.11

2 years ago

1.5.10

2 years ago

1.5.9

2 years ago

1.5.8

2 years ago

1.5.7

2 years ago

1.5.6

2 years ago

1.5.5

2 years ago

1.5.4

2 years ago

1.5.3

2 years ago

1.5.2

2 years ago

1.5.1

2 years ago

1.5.0

2 years ago

1.4.0

2 years ago

1.3.0

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago