Skip to content

Commit

Permalink
feat(codemod): place tasks last in turbo.json rewrites (#8268)
Browse files Browse the repository at this point in the history
### Description

Change order of the object reconstruction so the spread operator happens
first to keep the existing ordering of the keys, but only append tasks.

### Testing Instructions

Run codemod on a test repo
Before:
<img width="566" alt="Screenshot 2024-05-31 at 2 00 24 PM"
src="https://github.com/vercel/turbo/assets/4131117/9759fed8-28ef-4802-95c1-192dc10bf575">
After:
<img width="553" alt="Screenshot 2024-05-31 at 1 59 35 PM"
src="https://github.com/vercel/turbo/assets/4131117/a197cc75-573e-4448-a51c-523db98a3b41">
  • Loading branch information
chris-olszewski committed May 31, 2024
1 parent 395f5ce commit 00383d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/turbo-codemod/src/transforms/rename-pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const INTRODUCED_IN = "2.0.0-canary.0";
function migrateConfig(config: SchemaV1): Schema {
const { pipeline, ...rest } = config;

return { tasks: pipeline, ...rest };
return { ...rest, tasks: pipeline };
}

export function transformer({
Expand Down

0 comments on commit 00383d3

Please sign in to comment.