Skip to content

Commit 268272a

Browse files
committed
chore: rename turbo
1 parent 4db6b22 commit 268272a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+25
-23
lines changed

EXAMPLES_INVENTORY.md

Lines changed: 5 additions & 5 deletions

Justfile

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,34 @@ default:
66
install-all:
77
@echo "Installing vanilla dependencies..."
88
cd vanilla && pnpm install
9-
@echo "Installing nx dependencies..."
10-
cd nx && pnpm install
11-
@echo "Installing turborepo dependencies..."
12-
cd turborepo && pnpm install
9+
@echo "Installing nx examples..."
10+
cd nx/examples/mf-nx-rspack && pnpm install
11+
@echo "Installing turborepo examples..."
12+
cd turborepo/examples/mf-turbo-rspack && pnpm install
13+
@echo "Installing scripts dependencies..."
14+
cd scripts && pnpm install
1315
@echo "✓ All dependencies installed"
1416

1517
# Install dependencies in vanilla directory
1618
install-vanilla:
1719
cd vanilla && pnpm install
1820

19-
# Install dependencies in nx directory
21+
# Install dependencies in nx examples
2022
install-nx:
21-
cd nx && pnpm install
23+
cd nx/examples/mf-nx-rspack && pnpm install
2224

23-
# Install dependencies in turborepo directory
25+
# Install dependencies in turborepo examples
2426
install-turborepo:
25-
cd turborepo && pnpm install
27+
cd turborepo/examples/mf-turbo-rspack && pnpm install
2628

2729
# Clean all node_modules in all directories
2830
clean:
2931
@echo "Cleaning vanilla..."
3032
cd vanilla && pnpm remove-all-node-modules
3133
@echo "Cleaning nx..."
32-
cd nx && pnpm remove-all-node-modules
34+
cd nx && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +
3335
@echo "Cleaning turborepo..."
34-
cd turborepo && pnpm remove-all-node-modules
36+
cd turborepo && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +
3537
@echo "✓ All node_modules removed"
3638

3739
# Clean node_modules in vanilla directory
@@ -40,20 +42,20 @@ clean-vanilla:
4042

4143
# Clean node_modules in nx directory
4244
clean-nx:
43-
cd nx && pnpm remove-all-node-modules
45+
cd nx && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +
4446

4547
# Clean node_modules in turborepo directory
4648
clean-turborepo:
47-
cd turborepo && pnpm remove-all-node-modules
49+
cd turborepo && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +
4850

4951
# Clean all dist folders in all directories
5052
clean-dist-all:
5153
@echo "Cleaning vanilla dist..."
5254
cd vanilla && pnpm remove-all-dist
5355
@echo "Cleaning nx dist..."
54-
cd nx && pnpm remove-all-dist
56+
cd nx && find . -name 'dist' -type d -prune -exec rm -rf '{}' +
5557
@echo "Cleaning turborepo dist..."
56-
cd turborepo && pnpm remove-all-dist
58+
cd turborepo && find . -name 'dist' -type d -prune -exec rm -rf '{}' +
5759
@echo "✓ All dist folders removed"
5860

5961
# Clean dist folders in vanilla directory
@@ -62,11 +64,11 @@ clean-dist-vanilla:
6264

6365
# Clean dist folders in nx directory
6466
clean-dist-nx:
65-
cd nx && pnpm remove-all-dist
67+
cd nx && find . -name 'dist' -type d -prune -exec rm -rf '{}' +
6668

6769
# Clean dist folders in turborepo directory
6870
clean-dist-turborepo:
69-
cd turborepo && pnpm remove-all-dist
71+
cd turborepo && find . -name 'dist' -type d -prune -exec rm -rf '{}' +
7072

7173
# Build a specific example in vanilla directory
7274
build-vanilla example:

README.md

Lines changed: 2 additions & 2 deletions
File renamed without changes.

turborepo/examples/turbo-rspack-mf/apps/home/.gitignore renamed to turborepo/examples/mf-turbo-rspack/apps/home/.gitignore

File renamed without changes.

turborepo/examples/turbo-rspack-mf/apps/home/README.md renamed to turborepo/examples/mf-turbo-rspack/apps/home/README.md

turborepo/examples/turbo-rspack-mf/apps/home/index.html renamed to turborepo/examples/mf-turbo-rspack/apps/home/index.html

File renamed without changes.

turborepo/examples/turbo-rspack-mf/apps/home/module-federation.config.ts renamed to turborepo/examples/mf-turbo-rspack/apps/home/module-federation.config.ts

File renamed without changes.

0 commit comments

Comments
 (0)