From 059f8b6c139c32bcd5328d994d96d0fabed10e91 Mon Sep 17 00:00:00 2001 From: menarulalam <35981995+menarulalam@users.noreply.github.com> Date: Thu, 16 Nov 2023 13:17:42 -0800 Subject: [PATCH] Removed duplicate section --- docs/require-by-string-aliases.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/docs/require-by-string-aliases.md b/docs/require-by-string-aliases.md index 8704bbe..3ca1878 100644 --- a/docs/require-by-string-aliases.md +++ b/docs/require-by-string-aliases.md @@ -138,19 +138,6 @@ local dependency = require("dependency") Using the `paths` array allows Luau developers to organize their projects however they like without compromising code readability. -### Large-scale projects in Luau - -For large-scale Luau projects, we might imagine that every dependency of the project is a Luau project itself. We might use an organizational structure like this to create a clean hierarchy: - -``` -large-luau-project -├── .luaurc -├── subproject-1 -├── subproject-2 -└── subproject-3 -``` - - ##### Current limitations of aliases - Aliases cannot reference other aliases. (However, this is compatible with this proposal and will likely be implemented in the future.)