@lage-run/cache-github-actions 0.1.12 → 0.1.14
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 -2
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,37 @@
|
|
|
2
2
|
"name": "@lage-run/cache-github-actions",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Mon, 17 Jul 2023 15:13:19 GMT",
|
|
6
|
+
"tag": "@lage-run/cache-github-actions_v0.1.14",
|
|
7
|
+
"version": "0.1.14",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "email not defined",
|
|
12
|
+
"package": "@lage-run/cache-github-actions",
|
|
13
|
+
"commit": "5f41b1db342b6d7a8492a46b68ca328a21e61ee6",
|
|
14
|
+
"comment": "Update lage core deps"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Tue, 25 Apr 2023 02:51:19 GMT",
|
|
21
|
+
"tag": "@lage-run/cache-github-actions_v0.1.13",
|
|
22
|
+
"version": "0.1.13",
|
|
23
|
+
"comments": {
|
|
24
|
+
"patch": [
|
|
25
|
+
{
|
|
26
|
+
"author": "elcraig@microsoft.com",
|
|
27
|
+
"package": "@lage-run/cache-github-actions",
|
|
28
|
+
"commit": "a2e112e8aafee26380684efca4db994a9c5e3801",
|
|
29
|
+
"comment": "Update repository and homepage"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"date": "Fri, 14 Apr 2023 04:37:54 GMT",
|
|
6
36
|
"tag": "@lage-run/cache-github-actions_v0.1.12",
|
|
7
37
|
"version": "0.1.12",
|
|
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
|
|
3
|
+
This log was last generated on Mon, 17 Jul 2023 15:13:19 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.1.14
|
|
8
|
+
|
|
9
|
+
Mon, 17 Jul 2023 15:13:19 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- Update lage core deps (email not defined)
|
|
14
|
+
|
|
15
|
+
## 0.1.13
|
|
16
|
+
|
|
17
|
+
Tue, 25 Apr 2023 02:51:19 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Update repository and homepage (elcraig@microsoft.com)
|
|
22
|
+
|
|
7
23
|
## 0.1.12
|
|
8
24
|
|
|
9
|
-
Fri, 14 Apr 2023 04:37:
|
|
25
|
+
Fri, 14 Apr 2023 04:37:54 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,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lage-run/cache-github-actions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "Github Action Cache for Lage",
|
|
5
5
|
"repository": {
|
|
6
|
+
"type": "git",
|
|
6
7
|
"url": "https://github.com/microsoft/lage"
|
|
7
8
|
},
|
|
9
|
+
"homepage": "https://microsoft.github.io/lage/",
|
|
8
10
|
"license": "MIT",
|
|
9
11
|
"main": "lib/index.js",
|
|
10
12
|
"types": "lib/index.d.ts",
|
|
@@ -16,7 +18,7 @@
|
|
|
16
18
|
"dependencies": {
|
|
17
19
|
"backfill-config": "^6.3.1",
|
|
18
20
|
"backfill-logger": "^5.1.3",
|
|
19
|
-
"workspace-tools": "^0.
|
|
21
|
+
"workspace-tools": "^0.35.0",
|
|
20
22
|
"@actions/cache": "^3.0.4"
|
|
21
23
|
},
|
|
22
24
|
"devDependencies": {
|