@nx-cloud/runners
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

@nx-cloud/runners

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

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

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

@nx-cloud/runners/s3

Configuring the S3 runner

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

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

Connection is configured using the s3 option

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

Package Sidebar

Install

npm i @nx-cloud/runners

Weekly Downloads

4

Version

1.1.0

License

MIT

Unpacked Size

41.9 kB

Total Files

56

Last publish

Collaborators

  • defenderbass