Skip to content

Commit

Permalink
Add missing comma to dependsOn code example (#3884)
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-paulus committed Feb 21, 2023
1 parent 5e92929 commit 450759d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/pages/repo/docs/reference/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Items in `dependsOn` without `^` prefix, express the relationships between tasks
"build": {
// "A workspace's `build` command depends on its dependencies'
// or devDependencies' `build` command being completed first"
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
"dependsOn": ["^build"]
},
"test": {
Expand Down

1 comment on commit 450759d

@vercel
Copy link

@vercel vercel bot commented on 450759d Feb 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.