2.0.0 • Published 2 years ago

@runx/nx-runners v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@runx/nx-nx-runners

Attention is required! This project is not an official Nx Cloud service. This is an open-source alternative.

@runx/nx-nx-runners is a set of nx-runners for Nx projects.

Now available 1 runner for caching build artifacts with S3 @runx/nx-nx-runners/s3

@runx/nx-nx-runners/s3

Configuring the S3 runner

The runner is configured in nx.json. Available all options of default runner configuration.

{
  "tasksRunnerOptions": {
    "default": {
      "runner": "@runx/nx-runners/s3",
      "options": {
        "cacheableOperations": ["build", "lint", "test", "e2e"]
      }
    }
  }
}

Connection is configured using the s3 option

{
  "tasksRunnerOptions": {
    "default": {
      "runner": "@runx/nx-runners/s3",
      "options": {
        "cacheableOperations": ["build", "lint", "test", "e2e"],
        "s3": {
          "endpoint": "http://192.168.1.4:9000",
          "accessKeyId": "accessKeyId",
          "secretAccessKey": "secretAccessKey",
          "bucket": "bucket"
        }
      }
    }
  }
}