Skip to content

Commit

Permalink
Update development dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdaz committed Dec 7, 2022
1 parent d9106fb commit 970a147
Show file tree
Hide file tree
Showing 6 changed files with 106 additions and 92 deletions.
17 changes: 12 additions & 5 deletions dist/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -65599,21 +65599,28 @@ class CacheCleaner {
});
}
setUtimes(pattern, timestamp) {
var e_1, _a;
var _a, e_1, _b, _c;
return __awaiter(this, void 0, void 0, function* () {
const globber = yield glob.create(pattern, {
implicitDescendants: false
});
try {
for (var _b = __asyncValues(globber.globGenerator()), _c; _c = yield _b.next(), !_c.done;) {
const file = _c.value;
fs_1.default.utimesSync(file, timestamp, timestamp);
for (var _d = true, _e = __asyncValues(globber.globGenerator()), _f; _f = yield _e.next(), _a = _f.done, !_a;) {
_c = _f.value;
_d = false;
try {
const file = _c;
fs_1.default.utimesSync(file, timestamp, timestamp);
}
finally {
_d = true;
}
}
}
catch (e_1_1) { e_1 = { error: e_1_1 }; }
finally {
try {
if (_c && !_c.done && (_a = _b.return)) yield _a.call(_b);
if (!_d && !_a && (_b = _e.return)) yield _b.call(_e);
}
finally { if (e_1) throw e_1.error; }
}
Expand Down
2 changes: 1 addition & 1 deletion dist/main/index.js.map

Large diffs are not rendered by default.

17 changes: 12 additions & 5 deletions dist/post/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64650,21 +64650,28 @@ class CacheCleaner {
});
}
setUtimes(pattern, timestamp) {
var e_1, _a;
var _a, e_1, _b, _c;
return __awaiter(this, void 0, void 0, function* () {
const globber = yield glob.create(pattern, {
implicitDescendants: false
});
try {
for (var _b = __asyncValues(globber.globGenerator()), _c; _c = yield _b.next(), !_c.done;) {
const file = _c.value;
fs_1.default.utimesSync(file, timestamp, timestamp);
for (var _d = true, _e = __asyncValues(globber.globGenerator()), _f; _f = yield _e.next(), _a = _f.done, !_a;) {
_c = _f.value;
_d = false;
try {
const file = _c;
fs_1.default.utimesSync(file, timestamp, timestamp);
}
finally {
_d = true;
}
}
}
catch (e_1_1) { e_1 = { error: e_1_1 }; }
finally {
try {
if (_c && !_c.done && (_a = _b.return)) yield _a.call(_b);
if (!_d && !_a && (_b = _e.return)) yield _b.call(_e);
}
finally { if (e_1) throw e_1.error; }
}
Expand Down
2 changes: 1 addition & 1 deletion dist/post/index.js.map

Large diffs are not rendered by default.

150 changes: 75 additions & 75 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@
"@types/jest": "28.1.7",
"@types/node": "16.11.21",
"@types/unzipper": "0.10.5",
"@typescript-eslint/parser": "5.43.0",
"@typescript-eslint/parser": "5.45.1",
"@vercel/ncc": "0.34.0",
"eslint": "8.27.0",
"eslint": "8.29.0",
"eslint-plugin-github": "4.4.1",
"eslint-plugin-jest": "27.1.5",
"eslint-plugin-jest": "27.1.6",
"jest": "28.1.3",
"js-yaml": "4.1.0",
"patch-package": "6.5.0",
"prettier": "2.7.1",
"prettier": "2.8.0",
"ts-jest": "28.0.8",
"typescript": "4.8.4"
"typescript": "4.9.3"
}
}

0 comments on commit 970a147

Please sign in to comment.