Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 4154f2d

Browse files
2 parents f1566a6 + 1646c45 commit 4154f2d

File tree

8 files changed

+13
-95
lines changed

8 files changed

+13
-95
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
- DBUS_SESSION_BUS_ADDRESS=/dev/null
1111
- DISPLAY=:99.0
1212
- CHROME_BIN=chromium-browser
13-
- LATEST_RELEASE=2.0.0-rc.5
13+
- LATEST_RELEASE=2.0.0-rc.6
1414
- TASK_FLAGS="--dgeni-log=warn"
1515
matrix:
1616
- TASK=lint

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@
4242
"globby": "^4.0.0",
4343
"gulp": "^3.5.6",
4444
"gulp-env": "0.4.0",
45-
"gulp-sass": "^2.3.2",
4645
"gulp-less": "^3.1.0",
46+
"gulp-sass": "^2.3.2",
4747
"gulp-task-listing": "^1.0.1",
4848
"gulp-tslint": "^5.0.0",
4949
"gulp-util": "^3.0.6",
5050
"gulp-watch": "^4.3.4",
51-
"harp": "0.21.0-pre.0",
51+
"harp": "git://github.com/filipesilva/harp.git#8da8d3497ddbfcbcbadd8be63e0fd731d7310cc4",
5252
"html2jade": "^0.8.4",
5353
"indent-string": "^2.1.0",
5454
"jasmine-core": "^2.3.4",

public/_includes/_hero-home.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ header(class="background-sky")
88
.banner.banner-floaty
99
.banner-ng-annoucement
1010
div(class="banner-text" align="center")
11-
p Join us for AngularConnect in London, UK this September!
11+
p Join us for ng-europe in Paris, France this October!
1212
div(class="banner-button")
13-
a(href="http://angularconnect.com/?utm_source=angular&utm_medium=banner&utm_campaign=angular-banner" target="_blank" class="button md-button") Register now
13+
a(href="https://ngeurope.org/?utm_source=angular&utm_medium=banner&utm_campaign=angular-banner" target="_blank" class="button md-button") Register now

scripts/config/bad-code-excerpt-skip-patterns.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
/[jt]s/.*/api/router-deprecated/ # Obsolete API entries. No issue open yet.
55
/ts/latest/guide/style-guide.html # https://github.com/angular/angular.io/issues/2123
66
/ts/latest/guide/upgrade.html # In a transient state until RC6 - @filipe.silva
7+
/[jt]s/.*/api/forms/index/NG_VALIDATORS-let.html # RC6 contains broken example tags

tools/api-builder/angular.io-package/index.js

Lines changed: 6 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ module.exports = new Package('angular.io', [basePackage, targetPackage, cheatshe
1515

1616
.factory(require('./services/renderMarkdown'))
1717
.processor(require('./processors/addJadeDataDocsProcessor'))
18-
.processor(require('./processors/filterUnwantedDecorators'))
1918
.processor(require('./processors/matchUpDirectiveDecorators'))
2019
.processor(require('./processors/filterMemberDocs'))
2120

@@ -47,20 +46,13 @@ module.exports = new Package('angular.io', [basePackage, targetPackage, cheatshe
4746
}
4847
readTypeScriptModules.basePath = path.resolve(angular_repo_path, 'modules');
4948
readTypeScriptModules.ignoreExportsMatching = [
50-
'___esModule',
51-
'___core_private_types__',
52-
'___platform_browser_private__',
53-
'___platform_browser_private_types__',
54-
'___platform_browser_dynamic_private__',
55-
'___platform_browser_dynamic_private_types__',
56-
'___platform_server_private__',
57-
'___router_private__' ,
58-
'___core_private_testing_types__',
59-
'___compiler_private__',
49+
'__esModule',
6050
'__core_private__',
61-
'___core_private__',
62-
'___core_private_testing_placeholder__',
63-
'___core_private_testing__'
51+
'__core_private_testing__',
52+
'__platform_browser_private__',
53+
'__platform_browser_dynamic_private__',
54+
'__platform_server_private__',
55+
'__router_private__',
6456
];
6557

6658
readTypeScriptModules.sourceFiles = [
@@ -81,7 +73,6 @@ module.exports = new Package('angular.io', [basePackage, targetPackage, cheatshe
8173
'@angular/platform-webworker-dynamic/index.ts',
8274
'@angular/router/index.ts',
8375
'@angular/router/testing/index.ts',
84-
'@angular/router-deprecated/index.ts',
8576
'@angular/upgrade/index.ts',
8677
];
8778
readTypeScriptModules.hidePrivateMembers = true;
@@ -167,12 +158,4 @@ module.exports = new Package('angular.io', [basePackage, targetPackage, cheatshe
167158
require('./rendering/toId'),
168159
require('./rendering/indentForMarkdown')
169160
]));
170-
})
171-
172-
.config(function(filterUnwantedDecorators) {
173-
filterUnwantedDecorators.decoratorsToIgnore = [
174-
'CONST',
175-
'IMPLEMENTS',
176-
'ABSTRACT'
177-
];
178161
});

tools/api-builder/angular.io-package/processors/filterUnwantedDecorators.js

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

tools/api-builder/angular.io-package/processors/filterUnwantedDecorators.spec.js

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

tools/api-builder/angular.io-package/templates/class.template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
{% if doc.statics.length %}
2323
div(layout="column")
2424
{% for member in doc.statics %}{% if not member.internal %}
25-
pre(class="prettyprint no-bg-with-indent")
25+
pre(class="prettyprint no-bg-with-indent") static
2626
a(class="code-anchor" href="#{$ member.name $}-anchor")
2727
code(class="code-background api-doc-code") {$ member.name | indent(6, false) | trim $}
2828
code(class="api-doc-code") {$ params.paramList(member.parameters) | indent(8, false) | trim $}{$ params.returnType(member.returnType) $}

0 commit comments

Comments
 (0)