X Tutup
Skip to content

Commit 2e4a2a0

Browse files
chore(doc-gen): remove unnecessary @public and @exportedAs tags
1 parent 9fa7d38 commit 2e4a2a0

Some content is hidden

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

83 files changed

+5
-299
lines changed

DEVELOPER.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ You can selectively build either the JS or Dart versions as follows:
134134
* `$(npm bin)/gulp build.js`
135135
* `$(npm bin)/gulp build.dart`
136136

137-
Also note that in order for the whole test suite to succeed you will need to generate the docs by running:
137+
Also note that in order for the whole test suite to succeed you will need to generate the type definitions by running:
138138

139139
```shell
140-
$(npm bin)/gulp docs
140+
$(npm bin)/gulp docs/typings
141141
```
142142

143143
To clean out the `dist` folder, run:

docs/docs-package/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,7 @@ module.exports = new Package('angular-v2-docs', [jsdocPackage, nunjucksPackage,
4848

4949

5050
.config(function(parseTagsProcessor, getInjectables) {
51-
parseTagsProcessor.tagDefinitions.push(require('./tag-defs/public'));
5251
parseTagsProcessor.tagDefinitions.push(require('./tag-defs/private'));
53-
parseTagsProcessor.tagDefinitions.push(require('./tag-defs/exportedAs'));
5452

5553
// We actually don't want to parse param docs in this package as we are getting the data out using TS
5654
parseTagsProcessor.tagDefinitions.forEach(function(tagDef) {

docs/docs-package/tag-defs/exportedAs.js

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/docs-package/tag-defs/public.js

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/typescript-definition-package/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,7 @@ module.exports = new Package('angular-v2-docs', [jsdocPackage, nunjucksPackage,
4646

4747

4848
.config(function(parseTagsProcessor, getInjectables) {
49-
parseTagsProcessor.tagDefinitions.push(require('./tag-defs/public'));
5049
parseTagsProcessor.tagDefinitions.push(require('./tag-defs/private'));
51-
parseTagsProcessor.tagDefinitions.push(require('./tag-defs/exportedAs'));
5250

5351
// We actually don't want to parse param docs in this package as we are getting the data out using TS
5452
parseTagsProcessor.tagDefinitions.forEach(function(tagDef) {

docs/typescript-definition-package/tag-defs/exportedAs.js

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/typescript-definition-package/tag-defs/public.js

Lines changed: 0 additions & 4 deletions
This file was deleted.

modules/angular2/annotations.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/**
22
* @module
3-
* @public
43
* @description
54
*
65
* Annotations provide the additional information that Angular requires in order to run your

modules/angular2/change_detection.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/**
22
* @module
3-
* @public
43
* @description
54
* Change detection enables data binding in Angular.
65
*/

modules/angular2/core.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/**
22
* @module
3-
* @public
43
* @description
54
* Define angular core API here.
65
*/

0 commit comments

Comments
 (0)
X Tutup