@lage-run/cache-github-actions 0.1.13 → 0.1.15
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/CHANGELOG.json +31 -1
- package/CHANGELOG.md +18 -2
- package/lib/cacheProvider.js +8 -6
- package/lib/index.js +4 -2
- package/package.json +4 -4
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,37 @@
|
|
|
2
2
|
"name": "@lage-run/cache-github-actions",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "Tue,
|
|
5
|
+
"date": "Tue, 05 Sep 2023 22:19:01 GMT",
|
|
6
|
+
"tag": "@lage-run/cache-github-actions_v0.1.15",
|
|
7
|
+
"version": "0.1.15",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "elcraig@microsoft.com",
|
|
12
|
+
"package": "@lage-run/cache-github-actions",
|
|
13
|
+
"commit": "1b921746f45e232095c13e35039b2f425ff74f8e",
|
|
14
|
+
"comment": "Update backfill dependencies"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Mon, 17 Jul 2023 15:14:04 GMT",
|
|
21
|
+
"tag": "@lage-run/cache-github-actions_v0.1.14",
|
|
22
|
+
"version": "0.1.14",
|
|
23
|
+
"comments": {
|
|
24
|
+
"patch": [
|
|
25
|
+
{
|
|
26
|
+
"author": "email not defined",
|
|
27
|
+
"package": "@lage-run/cache-github-actions",
|
|
28
|
+
"commit": "5f41b1db342b6d7a8492a46b68ca328a21e61ee6",
|
|
29
|
+
"comment": "Update lage core deps"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"date": "Tue, 25 Apr 2023 02:51:19 GMT",
|
|
6
36
|
"tag": "@lage-run/cache-github-actions_v0.1.13",
|
|
7
37
|
"version": "0.1.13",
|
|
8
38
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
1
|
# Change Log - @lage-run/cache-github-actions
|
|
2
2
|
|
|
3
|
-
This log was last generated on Tue,
|
|
3
|
+
This log was last generated on Tue, 05 Sep 2023 22:19:01 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.1.15
|
|
8
|
+
|
|
9
|
+
Tue, 05 Sep 2023 22:19:01 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- Update backfill dependencies (elcraig@microsoft.com)
|
|
14
|
+
|
|
15
|
+
## 0.1.14
|
|
16
|
+
|
|
17
|
+
Mon, 17 Jul 2023 15:14:04 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Update lage core deps (email not defined)
|
|
22
|
+
|
|
7
23
|
## 0.1.13
|
|
8
24
|
|
|
9
|
-
Tue, 25 Apr 2023 02:
|
|
25
|
+
Tue, 25 Apr 2023 02:51:19 GMT
|
|
10
26
|
|
|
11
27
|
### Patches
|
|
12
28
|
|
package/lib/cacheProvider.js
CHANGED
|
@@ -4,17 +4,19 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
});
|
|
5
5
|
Object.defineProperty(exports, "cacheProvider", {
|
|
6
6
|
enumerable: true,
|
|
7
|
-
get: ()
|
|
7
|
+
get: function() {
|
|
8
|
+
return cacheProvider;
|
|
9
|
+
}
|
|
8
10
|
});
|
|
9
|
-
const _cache = /*#__PURE__*/
|
|
10
|
-
const _path = /*#__PURE__*/
|
|
11
|
-
const
|
|
12
|
-
function
|
|
11
|
+
const _cache = /*#__PURE__*/ _interop_require_default(require("@actions/cache"));
|
|
12
|
+
const _path = /*#__PURE__*/ _interop_require_default(require("path"));
|
|
13
|
+
const _workspacetools = require("workspace-tools");
|
|
14
|
+
function _interop_require_default(obj) {
|
|
13
15
|
return obj && obj.__esModule ? obj : {
|
|
14
16
|
default: obj
|
|
15
17
|
};
|
|
16
18
|
}
|
|
17
|
-
const root = (0,
|
|
19
|
+
const root = (0, _workspacetools.getWorkspaceRoot)(process.cwd());
|
|
18
20
|
const cacheProvider = {
|
|
19
21
|
provider: (_logger, cwd)=>{
|
|
20
22
|
return {
|
package/lib/index.js
CHANGED
|
@@ -4,6 +4,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
});
|
|
5
5
|
Object.defineProperty(exports, "default", {
|
|
6
6
|
enumerable: true,
|
|
7
|
-
get: ()
|
|
7
|
+
get: function() {
|
|
8
|
+
return _cacheProvider.cacheProvider;
|
|
9
|
+
}
|
|
8
10
|
});
|
|
9
|
-
const
|
|
11
|
+
const _cacheProvider = require("./cacheProvider.js");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lage-run/cache-github-actions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "Github Action Cache for Lage",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"lint": "monorepo-scripts lint"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"backfill-config": "^6.
|
|
20
|
-
"backfill-logger": "^5.1
|
|
21
|
-
"workspace-tools": "^0.
|
|
19
|
+
"backfill-config": "^6.4.1",
|
|
20
|
+
"backfill-logger": "^5.2.1",
|
|
21
|
+
"workspace-tools": "^0.35.0",
|
|
22
22
|
"@actions/cache": "^3.0.4"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|