turborepo-remote-cache 2.3.4 → 2.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|

|
|
7
7
|
|
|
8
|
-
[](https://github.com/ducktors/turborepo-remote-cache/releases)   [](https://github.com/ducktors/turborepo-remote-cache/actions/workflows/ci.yml) [](https://github.com/ducktors/turborepo-remote-cache/actions/workflows/test.yaml) [](https://github.com/ducktors/turborepo-remote-cache/actions/workflows/release.yml) [](https://github.com/ducktors/turborepo-remote-cache/actions/workflows/docker.yml) [](https://codeclimate.com/github/ducktors/turborepo-remote-cache/maintainability) [](https://coveralls.io/github/ducktors/turborepo-remote-cache?branch=main) [](https://hub.docker.com/r/ducktors/turborepo-remote-cache) [](https://www.npmjs.com/package/turborepo-remote-cache) [](https://github.com/semantic-release/semantic-release) [](https://securityscorecards.dev/viewer/?uri=github.com/ducktors/turborepo-remote-cache) <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
8
|
+
[](https://github.com/ducktors/turborepo-remote-cache/releases)   [](https://github.com/ducktors/turborepo-remote-cache/actions/workflows/ci.yml) [](https://github.com/ducktors/turborepo-remote-cache/actions/workflows/test.yaml) [](https://github.com/ducktors/turborepo-remote-cache/actions/workflows/release.yml) [](https://github.com/ducktors/turborepo-remote-cache/actions/workflows/docker.yml) [](https://codeclimate.com/github/ducktors/turborepo-remote-cache/maintainability) [](https://coveralls.io/github/ducktors/turborepo-remote-cache?branch=main) [](https://hub.docker.com/r/ducktors/turborepo-remote-cache) [](https://www.npmjs.com/package/turborepo-remote-cache) [](https://github.com/semantic-release/semantic-release) [](https://securityscorecards.dev/viewer/?uri=github.com/ducktors/turborepo-remote-cache) [](https://www.bestpractices.dev/projects/10164) <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
9
9
|
[](#contributors-)
|
|
10
10
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
11
11
|
|
|
@@ -16,6 +16,7 @@ It supports several storage providers and deploys environments. Moreover, the pr
|
|
|
16
16
|
|
|
17
17
|
- [GitHub Actions](https://github.com/trappar/turborepo-remote-cache-gh-action)
|
|
18
18
|
- [AWS CDK Construct](https://github.com/NimmLor/cdk-turborepo-remote-cache)
|
|
19
|
+
- [Turbo Daemon](https://github.com/NullVoxPopuli/turbo-daemon)
|
|
19
20
|
|
|
20
21
|
## Documentation
|
|
21
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "turborepo-remote-cache",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.5",
|
|
4
4
|
"description": "Turborepo remote cache server",
|
|
5
5
|
"main": "./dist/app.js",
|
|
6
6
|
"type": "module",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"semantic-release": "semantic-release",
|
|
37
37
|
"commit": "npx git-cz",
|
|
38
38
|
"prepare": "husky install",
|
|
39
|
-
"check-updates": "pnpm outdated --recursive --long"
|
|
39
|
+
"check-updates": "pnpm outdated --recursive --long",
|
|
40
|
+
"deps:inspector": "pnpx node-modules-inspector"
|
|
40
41
|
},
|
|
41
42
|
"repository": {
|
|
42
43
|
"type": "git",
|
|
@@ -118,6 +119,10 @@
|
|
|
118
119
|
"@octokit/plugin-paginate-rest@>=1.0.0 <11.4.1": ">=11.4.1",
|
|
119
120
|
"koa@>=2.0.0 <2.15.4": ">=2.15.4",
|
|
120
121
|
"esbuild@<=0.24.2": ">=0.25.0"
|
|
121
|
-
}
|
|
122
|
+
},
|
|
123
|
+
"onlyBuiltDependencies": [
|
|
124
|
+
"@biomejs/biome",
|
|
125
|
+
"msw"
|
|
126
|
+
]
|
|
122
127
|
}
|
|
123
128
|
}
|