@lage-run/cli 0.6.0 → 0.6.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/CHANGELOG.json +16 -1
- package/CHANGELOG.md +10 -2
- package/lib/commands/cache/cacheDir.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "@lage-run/cli",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "Wed, 18 Jan 2023
|
|
5
|
+
"date": "Wed, 18 Jan 2023 19:11:01 GMT",
|
|
6
|
+
"tag": "@lage-run/cli_v0.6.1",
|
|
7
|
+
"version": "0.6.1",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "kchau@microsoft.com",
|
|
12
|
+
"package": "@lage-run/cli",
|
|
13
|
+
"commit": "876eca11217aa53b9f0fa7c79b6258c44c730595",
|
|
14
|
+
"comment": "making sure the cache tasks are returning promises"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Wed, 18 Jan 2023 18:18:35 GMT",
|
|
6
21
|
"tag": "@lage-run/cli_v0.6.0",
|
|
7
22
|
"version": "0.6.0",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# Change Log - @lage-run/cli
|
|
2
2
|
|
|
3
|
-
This log was last generated on Wed, 18 Jan 2023
|
|
3
|
+
This log was last generated on Wed, 18 Jan 2023 19:11:01 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.6.1
|
|
8
|
+
|
|
9
|
+
Wed, 18 Jan 2023 19:11:01 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- making sure the cache tasks are returning promises (kchau@microsoft.com)
|
|
14
|
+
|
|
7
15
|
## 0.6.0
|
|
8
16
|
|
|
9
|
-
Wed, 18 Jan 2023 18:18:
|
|
17
|
+
Wed, 18 Jan 2023 18:18:35 GMT
|
|
10
18
|
|
|
11
19
|
### Minor changes
|
|
12
20
|
|
|
@@ -25,10 +25,10 @@ function getCacheDir(workspace, internalCacheFolder) {
|
|
|
25
25
|
}
|
|
26
26
|
async function removeCacheEntry(entryPath, entryStat) {
|
|
27
27
|
if (entryStat.isDirectory()) {
|
|
28
|
-
(0, _promises.rm)(entryPath, {
|
|
28
|
+
return (0, _promises.rm)(entryPath, {
|
|
29
29
|
recursive: true
|
|
30
30
|
});
|
|
31
31
|
} else {
|
|
32
|
-
(0, _promises.unlink)(entryPath);
|
|
32
|
+
return (0, _promises.unlink)(entryPath);
|
|
33
33
|
}
|
|
34
34
|
}
|