Skip to content

Commit

Permalink
Prefix all turborepo crates with turborepo-
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasLYang committed May 16, 2023
1 parent 407ad8f commit d22967c
Show file tree
Hide file tree
Showing 39 changed files with 44 additions and 77 deletions.
12 changes: 1 addition & 11 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,7 @@ pnpm-lock.yaml
/crates

# overrides for crates that are owned by turbo-oss
/crates/globwatch @vercel/turbo-oss
/crates/pidlock @vercel/turbo-oss
/crates/turbopath @vercel/turbo-oss
/crates/turborepo @vercel/turbo-oss
/crates/turborepo-api-client @vercel/turbo-oss
/crates/turborepo-ffi @vercel/turbo-oss
/crates/turborepo-lib @vercel/turbo-oss
/crates/turborepo-lockfiles @vercel/turbo-oss
/crates/turborepo-scm @vercel/turbo-oss
/crates/turborepo-vercel-api-mock @vercel/turbo-oss
/crates/turbo-updater @vercel/turbo-oss
/crates/turborepo* @vercel/turbo-oss

# overrides for crates that are owned by web-tooling
/crates/turbo-tasks* @vercel/web-tooling
Expand Down
23 changes: 2 additions & 21 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,7 @@ jobs:
xtask/**
.cargo/**
rust-toolchain
!crates/glob-match/**
!crates/globwatch/**
!crates/pidlock/**
!crates/turborepo/**
!crates/turborepo-api-client/**
!crates/turborepo-lib/**
!crates/turborepo-ffi/**
!crates/turborepo-scm/**
!crates/turborepo-lockfiles/**
!crates/turbo-updater/**
!crates/turborepo*/**
!**.md
!**.mdx
Expand All @@ -123,16 +114,7 @@ jobs:
PATTERNS: |
pnpm-lock.yaml
package.json
crates/glob-match/**
crates/globwatch/**
crates/pidlock/**
crates/turborepo/**
crates/turborepo-api-client/**
crates/turborepo-lib/**
crates/turborepo-ffi/**
crates/turborepo-scm/**
crates/turborepo-lockfiles/**
crates/turbo-updater/**
crates/turborepo*/**
.cargo/**
rust-toolchain
!**.md
Expand Down Expand Up @@ -625,7 +607,6 @@ jobs:

- name: Run tests
timeout-minutes: 120
# We exclude turbo as it requires linking Go and all logic resides in turborepo-lib
run: |
cargo tr-test
Expand Down
62 changes: 35 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 3 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,10 @@
resolver = "2"

members = [
"crates/globwatch",
"crates/pidlock",
"crates/node-file-trace",
"crates/turbo-tasks*",
"crates/turbopack*",
"crates/turbo-updater",
"crates/turbopath",
"crates/glob-match",
"crates/turborepo",
"crates/turborepo-api-client",
"crates/turborepo-ffi",
"crates/turborepo-fs",
"crates/turborepo-lib",
"crates/turborepo-lockfiles",
"crates/turborepo-scm",
"crates/turborepo-vercel-api-mock",
"crates/turborepo*",
"xtask",
]

Expand Down Expand Up @@ -101,7 +89,7 @@ turbo-tasks-macros-shared = { path = "crates/turbo-tasks-macros-shared" }
turbo-tasks-macros-tests = { path = "crates/turbo-tasks-macros-tests" }
turbo-tasks-memory = { path = "crates/turbo-tasks-memory" }
turbo-tasks-testing = { path = "crates/turbo-tasks-testing" }
turbo-updater = { path = "crates/turbo-updater" }
turbo-updater = { path = "crates/turborepo-updater" }
turbopack = { path = "crates/turbopack" }
turbopack-bench = { path = "crates/turbopack-bench" }
turbopack-cli = { path = "crates/turbopack-cli" }
Expand All @@ -122,7 +110,7 @@ turbopack-static = { path = "crates/turbopack-static" }
turbopack-swc-utils = { path = "crates/turbopack-swc-utils" }
turbopack-test-utils = { path = "crates/turbopack-test-utils" }
turbopack-tests = { path = "crates/turbopack-tests" }
turbopath = { path = "crates/turbopath" }
turbopath = { path = "crates/turborepo-paths" }
turborepo = { path = "crates/turborepo" }
turborepo-api-client = { path = "crates/turborepo-api-client" }
turborepo-ffi = { path = "crates/turborepo-ffi" }
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ libfuzzer-sys = "0.4"

# Prevent this from interfering with workspaces
[workspace]
members = ["."]
members = [""]

[profile.release]
debug = 1
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions crates/turborepo-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dirs-next = "2.0.0"
dunce = { workspace = true }
futures = "0.3.26"
glob-match = "0.2.1"
globwatch = { path = "../globwatch" }
globwatch = { path = "../turborepo-globwatch" }
hex = "0.4.3"
hostname = "0.3.1"
humantime = "2.1.0"
Expand All @@ -56,7 +56,7 @@ itertools = { workspace = true }
lazy_static = { workspace = true }
libc = "0.2.140"
notify = "5.1"
pidlock = { path = "../pidlock" }
pidlock = { path = "../turborepo-pidlock" }
prost = "0.11.6"
reqwest = { workspace = true, default_features = false, features = ["json"] }
rustc_version_runtime = "0.2.1"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d22967c

Please sign in to comment.