Skip to content

Commit

Permalink
temp: remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
angusbayley committed Sep 6, 2024
1 parent 08593e3 commit 292c521
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions tools/actions/turbo-affected/build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -19525,13 +19525,9 @@ function main() {
const pkg = core.getInput("package") || "";
const command = core.getInput("command");
const turboVersion = package_default.devDependencies.turbo;
console.log({ ref });
console.log({ pkg });
console.log({ command });
console.log({ turboVersion });
try {
const turboOutput = (0, import_child_process.execSync)(
`npx turbo@2.1.1 run ${command} --filter=...[${ref}] --dry=json`,
`npx turbo@${turboVersion} run ${command} --filter=...[${ref}] --dry=json`,
{
encoding: "utf-8",
maxBuffer: 2048 * 1024
Expand Down
6 changes: 1 addition & 5 deletions tools/actions/turbo-affected/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,10 @@ async function main() {
const pkg = core.getInput("package") || "";
const command = core.getInput("command");
const turboVersion = packageJson.devDependencies.turbo;
console.log({ ref });
console.log({ pkg });
console.log({ command });
console.log({ turboVersion });

try {
const turboOutput = execSync(
`npx turbo@2.1.1 run ${command} --filter=...[${ref}] --dry=json`,
`npx turbo@${turboVersion} run ${command} --filter=...[${ref}] --dry=json`,
{
encoding: "utf-8",
maxBuffer: 2048 * 1024,
Expand Down

0 comments on commit 292c521

Please sign in to comment.