You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ja...@apache.org on 2019/04/29 11:39:07 UTC

[cordova-docs] branch janpio-extract_project_structure_from_cli updated: add node_modules

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

janpio pushed a commit to branch janpio-extract_project_structure_from_cli
in repository https://gitbox.apache.org/repos/asf/cordova-docs.git


The following commit(s) were added to refs/heads/janpio-extract_project_structure_from_cli by this push:
     new 1a3a19e  add node_modules
1a3a19e is described below

commit 1a3a19e7f940d65bfbf9ca60554e321266f99af0
Author: Jan Piotrowski <pi...@gmail.com>
AuthorDate: Mon Apr 29 13:39:01 2019 +0200

    add node_modules
---
 www/docs/en/dev/guide/overview/project-structure.md | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/www/docs/en/dev/guide/overview/project-structure.md b/www/docs/en/dev/guide/overview/project-structure.md
index fe315f0..0fb9b32 100644
--- a/www/docs/en/dev/guide/overview/project-structure.md
+++ b/www/docs/en/dev/guide/overview/project-structure.md
@@ -37,6 +37,7 @@ myapp/
 | | |-- android/
 | | |-- windows/
 | | |-- ios/
+|-- node_modules/
 |-- www/
 |-- platforms/
 | |-- android/
@@ -44,7 +45,10 @@ myapp/
 | |-- ios/
 |-- plugins/
   |--cordova-plugin-camera/
+  
 ```
+TODO resort properly
+
 
 ### `package.json`
 
@@ -58,6 +62,12 @@ Configures your application and allows you to customize the behavior of your pro
 
 Contains the project's web artifacts, such as .html, .css and .js files. As a cordova application developer, most of your code and assets will go here. They will be copied on a `cordova prepare` to each platform's www directory. The www source directory is reproduced within each platform's subdirectory, appearing for example in `platforms/ios/www` or `platforms/android/assets/www`. Because the CLI constantly copies over files from the source www folder, you should only edit these files a [...]
 
+### `node_modules/`
+
+TODO
+Dependencies inistalled via NPM. 
+Base for `platforms` and `plugins`
+
 ### `platforms/`
 
 Contains all the source code and build scripts for the platforms that you add to your project.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org