Skip to content

Commit 15fb001

Browse files
author
Vladimir Kotikov
committed
Addresses review notes
1 parent 5acd082 commit 15fb001

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

proposals/CordovaProject.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@ function CordovaProject(root) {
2121
www: path.join(root, 'www'),
2222
/** @type {String} config.xml file location */
2323
configXml: path.join(root, 'config.xml'),
24-
/** @type {String } Installed platforms location */
25-
platforms: path.join(root, 'platforms')
24+
/** @type {String} Installed platforms location */
25+
platforms: path.join(root, 'platforms'),
26+
/** @type {String} Installed plugins location */
27+
plugins: path.join(root, 'plugins')
2628
};
2729

2830
/**
@@ -34,7 +36,7 @@ function CordovaProject(root) {
3436

3537
/**
3638
* Represents the configuration, used for building project. Populated with
37-
* values from buildconfig.json, if exists, or with some default values,
39+
* values from build.json, if exists, or with some default values,
3840
* if not.
3941
*
4042
* @type {BuildConfig}

proposals/CordovaProject.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* [.www](#CordovaProject+locations.www) : <code>String</code>
99
* [.configXml](#CordovaProject+locations.configXml) : <code>String</code>
1010
* [.platforms](#CordovaProject+locations.platforms) : <code>String</code>
11+
* [.plugins](#CordovaProject+locations.plugins) : <code>String</code>
1112
* [.root](#CordovaProject+root) : <code>String</code>
1213
* [.buildConfig](#CordovaProject+buildConfig) : <code>BuildConfig</code>
1314
* [.projectConfig](#CordovaProject+projectConfig) : <code>ConfigParser</code>
@@ -26,6 +27,7 @@ Simple object that exposes this project's filesystem locations, such as www di
2627
* [.www](#CordovaProject+locations.www) : <code>String</code>
2728
* [.configXml](#CordovaProject+locations.configXml) : <code>String</code>
2829
* [.platforms](#CordovaProject+locations.platforms) : <code>String</code>
30+
* [.plugins](#CordovaProject+locations.plugins) : <code>String</code>
2931

3032
<a name="CordovaProject+locations.www"></a>
3133
#### locations.www : <code>String</code>
@@ -41,6 +43,11 @@ config.xml file location
4143
#### locations.platforms : <code>String</code>
4244
Installed platforms location
4345

46+
**Kind**: static property of <code>[locations](#CordovaProject+locations)</code>
47+
<a name="CordovaProject+locations.plugins"></a>
48+
#### locations.plugins : <code>String</code>
49+
Installed plugins location
50+
4451
**Kind**: static property of <code>[locations](#CordovaProject+locations)</code>
4552
<a name="CordovaProject+root"></a>
4653
### cordovaProject.root : <code>String</code>
@@ -49,7 +56,7 @@ The project's root location.
4956
**Kind**: instance property of <code>[CordovaProject](#CordovaProject)</code>
5057
<a name="CordovaProject+buildConfig"></a>
5158
### cordovaProject.buildConfig : <code>BuildConfig</code>
52-
Represents the configuration, used for building project. Populated with values from buildconfig.json, if exists, or with some default values, if not.
59+
Represents the configuration, used for building project. Populated with values from build.json, if exists, or with some default values, if not.
5360

5461
**Kind**: instance property of <code>[CordovaProject](#CordovaProject)</code>
5562
<a name="CordovaProject+projectConfig"></a>

0 commit comments

Comments
 (0)