@rharkor/caching-for-turbo 2.1.0 → 2.1.1
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/.env.example +6 -1
- package/README.md +14 -46
- package/dist/cli/index.js +66 -40
- package/dist/cli/index.js.map +1 -1
- package/package.json +1 -61
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rharkor/caching-for-turbo",
|
|
3
3
|
"description": "Sets up Turborepo Remote Caching to work with GitHub Actions built-in cache",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.1",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://github.com/rharkor/caching-for-turbo",
|
|
7
7
|
"repository": {
|
|
@@ -27,67 +27,7 @@
|
|
|
27
27
|
"engines": {
|
|
28
28
|
"node": ">=20"
|
|
29
29
|
},
|
|
30
|
-
"scripts": {
|
|
31
|
-
"bundle": "npm run format:write && npm run package",
|
|
32
|
-
"coverage": "make-coverage-badge --output-path ./badges/coverage.svg",
|
|
33
|
-
"format:write": "prettier --write .",
|
|
34
|
-
"format:check": "prettier --check .",
|
|
35
|
-
"lint": "eslint .",
|
|
36
|
-
"package": "ncc build src/index.ts -o dist/setup --source-map --license licenses.txt && ncc build src/post.ts -o dist/post --source-map --license licenses.txt && ncc build src/cli.ts -o dist/cli --source-map --license licenses.txt",
|
|
37
|
-
"package:watch": "npm run package -- --watch",
|
|
38
|
-
"all": "npm run format:write && npm run lint && npm run coverage && npm run package",
|
|
39
|
-
"test-build": "npm run -s package",
|
|
40
|
-
"test": "turbo run test-build",
|
|
41
|
-
"dev-run": "tsx ./src/dev-run.ts",
|
|
42
|
-
"cleanup": "tsx ./src/dev/cleanup.ts",
|
|
43
|
-
"start": "node dist/cli/index.js"
|
|
44
|
-
},
|
|
45
30
|
"license": "MIT",
|
|
46
|
-
"dependencies": {
|
|
47
|
-
"@actions/cache": "^4.0.0",
|
|
48
|
-
"@actions/core": "^1.10.1",
|
|
49
|
-
"@aws-sdk/client-s3": "^3.0.0",
|
|
50
|
-
"@aws-sdk/lib-storage": "^3.0.0",
|
|
51
|
-
"@rharkor/logger": "^1.3.1",
|
|
52
|
-
"fastify": "^5.0.0",
|
|
53
|
-
"filesize-parser": "^1.5.1",
|
|
54
|
-
"parse-duration": "^2.1.4",
|
|
55
|
-
"stream-to-promise": "^3.0.0",
|
|
56
|
-
"wait-on": "^8.0.0"
|
|
57
|
-
},
|
|
58
|
-
"devDependencies": {
|
|
59
|
-
"@eslint/js": "^9.24.0",
|
|
60
|
-
"@jest/globals": "^30.0.0",
|
|
61
|
-
"@types/node": "^22.0.0",
|
|
62
|
-
"@types/stream-to-promise": "^2.2.4",
|
|
63
|
-
"@types/wait-on": "^5.3.4",
|
|
64
|
-
"@typescript-eslint/eslint-plugin": "^8.29.1",
|
|
65
|
-
"@typescript-eslint/parser": "^8.29.1",
|
|
66
|
-
"@vercel/ncc": "^0.38.1",
|
|
67
|
-
"dotenv": "^16.4.7",
|
|
68
|
-
"eslint": "^9.24.0",
|
|
69
|
-
"eslint-plugin-github": "^6.0.0",
|
|
70
|
-
"eslint-plugin-jest": "^29.0.0",
|
|
71
|
-
"eslint-plugin-jsonc": "^2.16.0",
|
|
72
|
-
"eslint-plugin-prettier": "^5.1.3",
|
|
73
|
-
"globals": "^16.0.0",
|
|
74
|
-
"make-coverage-badge": "^1.2.0",
|
|
75
|
-
"prettier": "^3.3.2",
|
|
76
|
-
"prettier-eslint": "^16.3.0",
|
|
77
|
-
"ts-jest": "^29.1.4",
|
|
78
|
-
"tsx": "^4.15.4",
|
|
79
|
-
"turbo": "^2.0.3",
|
|
80
|
-
"typescript": "^5.4.5",
|
|
81
|
-
"typescript-eslint": "^8.29.1",
|
|
82
|
-
"@semantic-release/changelog": "^6.0.3",
|
|
83
|
-
"@semantic-release/commit-analyzer": "^13.0.0",
|
|
84
|
-
"@semantic-release/git": "^10.0.1",
|
|
85
|
-
"@semantic-release/github": "^11.0.0",
|
|
86
|
-
"@semantic-release/npm": "^12.0.0",
|
|
87
|
-
"@semantic-release/release-notes-generator": "^14.0.0",
|
|
88
|
-
"conventional-changelog-conventionalcommits": "^9.0.0",
|
|
89
|
-
"semantic-release": "^24.0.0"
|
|
90
|
-
},
|
|
91
31
|
"packageManager": "npm@11.4.2",
|
|
92
32
|
"publishConfig": {
|
|
93
33
|
"access": "public"
|