Update TypeScript dependency to version 5.7.2 and refactor run function parameters

This commit is contained in:
Borales
2024-12-09 18:01:44 +01:00
parent 726692d6eb
commit e090e6360e
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.run = void 0;
const exec_1 = __nccwpck_require__(236);
const run = (cmd, { cwd }) => __awaiter(void 0, void 0, void 0, function* () {
const run = (cmd_1, _a) => __awaiter(void 0, [cmd_1, _a], void 0, function* (cmd, { cwd }) {
yield (0, exec_1.exec)('yarn', cmd.split(' '), { cwd });
});
exports.run = run;
+1 -1
View File
File diff suppressed because one or more lines are too long