0.1.1 • Published 2 years ago

@stixx200/nx-remotecache-filesystem v0.1.1

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

nx-remotecache-filesystem

A task runner for @nrwl/nx that uses an filesystem location as a remote cache.

Setup

npm install --save-dev @stixx200/nx-remotecache-filesystem
ParameterDescriptionEnvironment Variable / .envnx.json
Cache LocationTarget cache locationNX_CACHE_FS_CACHE_LOCATIONcacheLocation
ChmodRun chmod after creating the target cache file on it. Provide a number.NX_CACHE_FS_CHMODchmod
Config FileProvide a js file which exports a configuration.-configFile
{
  "tasksRunnerOptions": {
    "default": {
      "runner": "nx-remotecache-filesystem",
      "options": {
        "cacheLocation": "/mnt/shared-cache",
        "chmod": 255
      }
    }
  }
}