Skip to content

Commit

Permalink
Build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
resolve-bot committed Feb 18, 2021
1 parent e5e9d78 commit b8e572c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion publish/dist/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5473,6 +5473,7 @@ const main = () => __awaiter(void 0, void 0, void 0, function* () {
if (error) {
return reject(Error(`${error.message}:\nstderr:${stderr}\nstdout:${stdout}`));
}
core.debug(stdout);
resolve(stdout);
});
});
Expand Down Expand Up @@ -5627,7 +5628,9 @@ const bumpDependencies = (pkg, pattern, version) => {
};
exports.bumpDependencies = bumpDependencies;
const processWorkspaces = (processor, debug) => __awaiter(void 0, void 0, void 0, function* () {
const info = JSON.parse(child_process_1.execSync(`yarn workspaces info --silent`).toString('utf-8'));
const output = child_process_1.execSync(`yarn workspaces info --silent`).toString('utf-8');
debug(output);
const info = JSON.parse(output);
const workspaces = Object.keys(info).map((name) => {
const location = path.resolve(info[name].location);
debug(`[${name}] enqueue processing at ${location}`);
Expand Down
5 changes: 4 additions & 1 deletion publish/dist/post/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5440,6 +5440,7 @@ const post = () => __awaiter(void 0, void 0, void 0, function* () {
if (error) {
return reject(Error(`${error.message}:\nstderr:${stderr}\nstdout:${stdout}`));
}
core.debug(stdout);
resolve(stdout);
});
});
Expand Down Expand Up @@ -5571,7 +5572,9 @@ const bumpDependencies = (pkg, pattern, version) => {
};
exports.bumpDependencies = bumpDependencies;
const processWorkspaces = (processor, debug) => __awaiter(void 0, void 0, void 0, function* () {
const info = JSON.parse(child_process_1.execSync(`yarn workspaces info --silent`).toString('utf-8'));
const output = child_process_1.execSync(`yarn workspaces info --silent`).toString('utf-8');
debug(output);
const info = JSON.parse(output);
const workspaces = Object.keys(info).map((name) => {
const location = path.resolve(info[name].location);
debug(`[${name}] enqueue processing at ${location}`);
Expand Down

0 comments on commit b8e572c

Please sign in to comment.