You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by an...@apache.org on 2021/01/27 14:53:12 UTC

[royale-docs] branch master updated: Update modules.md

This is an automated email from the ASF dual-hosted git repository.

andreww pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-docs.git


The following commit(s) were added to refs/heads/master by this push:
     new 8dcb83f  Update modules.md
8dcb83f is described below

commit 8dcb83f53be193189b06741a102df8c2dad10148
Author: Andrew Wetmore <an...@cottage14.com>
AuthorDate: Wed Jan 27 10:53:07 2021 -0400

    Update modules.md
    
    Fixed a text issue Rick Mills spotted
---
 features/modules.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/features/modules.md b/features/modules.md
index 5b9dc89..4a647d5 100644
--- a/features/modules.md
+++ b/features/modules.md
@@ -48,7 +48,7 @@ Proper use of modules can help maintain _"separation of concerns"_ which helps k
 
 ## Compiling modules
 
-Typically, you develop a in a separate folder of source files, and generate the output as a sibling to the other source files, which then cannot be easily accessed by the output of the main app. In JavaScript output, in development mode, the compiler generates lots of files. All these files must be relocated into the main app's output folder so the main app can reference them via the same relative path when the module is compiled into a single output file in production mode.
+Typically, you develop a module in a separate folder of source files, and generate the output as a sibling to the other source files, which then cannot be easily accessed by the output of the main app. In JavaScript output, in development mode, the compiler generates lots of files. All these files must be relocated into the main app's output folder so the main app can reference them via the same relative path when the module is compiled into a single output file in production mode.
 
 The Royale compiler supports a `-module-output=<destination folder>` that redirects where the output goes in order to place the development output in the right place. This is useful in some cases when using module that are in the same source path as the main app as opposed to being in separate projects.