@netlify/cache-utils 6.0.2 → 6.0.3
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 +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -109,10 +109,10 @@ Current directory used to resolve relative paths.
|
|
|
109
109
|
`options`: `object`\
|
|
110
110
|
_Returns_: `Promise<Boolean>`
|
|
111
111
|
|
|
112
|
-
Restore a file/directory previously cached. Skipped if
|
|
113
|
-
cached yet.
|
|
112
|
+
Restore a file/directory previously cached. Skipped if it has not been cached yet.
|
|
114
113
|
|
|
115
|
-
Please be careful: this
|
|
114
|
+
Please be careful: if the file/directory was cached, this will delete local file/directory and replace it with cached
|
|
115
|
+
content.
|
|
116
116
|
|
|
117
117
|
Returns `false` if the file/directory was not cached yet. Returns `true` otherwise.
|
|
118
118
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/cache-utils",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.3",
|
|
4
4
|
"description": "Utility for caching files in Netlify Build",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./lib/main.js",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"readdirp": "^4.0.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@types/node": "^
|
|
63
|
+
"@types/node": "^18.0.0",
|
|
64
64
|
"tmp-promise": "^3.0.0",
|
|
65
65
|
"typescript": "^5.0.0",
|
|
66
66
|
"vitest": "^0.34.0"
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"engines": {
|
|
69
69
|
"node": ">=18.14.0"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "df148594017a78f0f419591da402311ed08e4d64"
|
|
72
72
|
}
|