turbo: regression: turbo couldn't find packages

What version of Turborepo are you using?

1.1.5

What package manager are you using / does the bug impact?

Yarn v1

What operating system are you using?

Linux

Describe the Bug

I upgraded turbo to 1.1.5 then tried to run turbo run build on my server and it couldn’t find packages, output below.

• Packages in scope: 
• Running build in 0 packages

 Tasks:    0 successful, 0 total
Cached:    0 cached, 0 total
  Time:    83ms >>> FULL TURBO

Expected Behavior

find packages, and run pipeline.

To Reproduce

it was run on Debian 11 with node 16, and latest yarn.

About this issue

  • Original URL
  • State: closed
  • Created 2 years ago
  • Reactions: 1
  • Comments: 15 (10 by maintainers)

Most upvoted comments

@dulmandakh Just wanted to check in, did you manage to get your dependencies picked up? If you want to use the latest canary, you should be able to use --dry to check what would be run.

The package itself can be named test, just not the folder it lives in

@jaredpalmer

This is how we define packages, also we use * to specify local dependency.

 "workspaces": [
    "packages/*",
    "sites/*"
  ],