Skip to content

Commit

Permalink
fix(build_docs): fix doc building
Browse files Browse the repository at this point in the history
  • Loading branch information
bafolts committed Sep 25, 2016
1 parent e20cdb7 commit f822312
Show file tree
Hide file tree
Showing 95 changed files with 108 additions and 104 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@
"coveralls": "^2.11.13",
"cz-conventional-changelog": "^1.2.0",
"doctoc": "^1.0.0",
"escape-string-regexp": "^1.0.5 ",
"esdoc": "^0.4.7",
"eslint": "^2.12.0",
"fs-extra": "^0.30.0",
Expand Down
2 changes: 1 addition & 1 deletion spec/helpers/ambient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ declare module 'mocha/lib/suite' {
}

declare module 'mocha/lib/test' {
}
}
2 changes: 1 addition & 1 deletion src/InnerSubscriber.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { OuterSubscriber } from './OuterSubscriber';

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
export class InnerSubscriber<T, R> extends Subscriber<R> {
Expand Down
1 change: 0 additions & 1 deletion src/MiscJSDoc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import './observable/dom/MiscJSDoc';

/**
* We need this JSDoc comment for affecting ESDoc.
* @extends {Ignored}
* @hide true
*/
export class ObservableDoc {
Expand Down
2 changes: 1 addition & 1 deletion src/OuterSubscriber.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { InnerSubscriber } from './InnerSubscriber';

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
export class OuterSubscriber<T, R> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/SubjectSubscription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Subscription } from './Subscription';

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
export class SubjectSubscription<T> extends Subscription {
Expand Down
2 changes: 1 addition & 1 deletion src/Subscriber.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export class Subscriber<T> extends Subscription implements Observer<T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class SafeSubscriber<T> extends Subscriber<T> {
Expand Down
4 changes: 2 additions & 2 deletions src/observable/ForkJoinObservable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class ForkJoinObservable<T> extends Observable<T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class ForkJoinSubscriber<T> extends OuterSubscriber<T, T> {
Expand Down Expand Up @@ -138,4 +138,4 @@ class ForkJoinSubscriber<T> extends OuterSubscriber<T, T> {

destination.complete();
}
}
}
2 changes: 1 addition & 1 deletion src/observable/FromEventPatternObservable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@ export class FromEventPatternObservable<T, R> extends Observable<T> {
errorSubscriber.error(e);
}
}
}
}
2 changes: 1 addition & 1 deletion src/observable/PairsObservable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ export class PairsObservable<T> extends Observable<Array<string | T>> {
subscriber.complete();
}
}
}
}
2 changes: 1 addition & 1 deletion src/observable/UsingObservable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ class UsingSubscriber<T> extends OuterSubscriber<T, T> {
this._error(err);
}
}
}
}
2 changes: 1 addition & 1 deletion src/observable/dom/AjaxObservable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export class AjaxObservable<T> extends Observable<T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
export class AjaxSubscriber<T> extends Subscriber<Event> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/audit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class AuditOperator<T> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class AuditSubscriber<T, R> extends OuterSubscriber<T, R> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/auditTime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class AuditTimeOperator<T> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class AuditTimeSubscriber<T> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/buffer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class BufferOperator<T> implements Operator<T, T[]> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class BufferSubscriber<T> extends OuterSubscriber<T, any> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/bufferCount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class BufferCountOperator<T> implements Operator<T, T[]> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class BufferCountSubscriber<T> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/bufferTime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ type CreationState<T> = {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class BufferTimeSubscriber<T> extends Subscriber<T> {
Expand Down
4 changes: 2 additions & 2 deletions src/operator/bufferToggle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ interface BufferContext<T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class BufferToggleSubscriber<T, O> extends OuterSubscriber<T, O> {
Expand Down Expand Up @@ -171,4 +171,4 @@ class BufferToggleSubscriber<T, O> extends OuterSubscriber<T, O> {
subscription.add(innerSubscription);
}
}
}
}
2 changes: 1 addition & 1 deletion src/operator/bufferWhen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class BufferWhenOperator<T> implements Operator<T, T[]> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class BufferWhenSubscriber<T> extends OuterSubscriber<T, any> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/catch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class CatchOperator<T, R> implements Operator<T, R> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class CatchSubscriber<T, R> extends OuterSubscriber<T, R> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/combineLatest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class CombineLatestOperator<T, R> implements Operator<T, R> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
export class CombineLatestSubscriber<T, R> extends OuterSubscriber<T, R> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/count.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class CountOperator<T> implements Operator<T, number> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class CountSubscriber<T> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/debounce.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class DebounceOperator<T> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class DebounceSubscriber<T, R> extends OuterSubscriber<T, R> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/debounceTime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class DebounceTimeOperator<T> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class DebounceTimeSubscriber<T> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/defaultIfEmpty.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class DefaultIfEmptyOperator<T, R> implements Operator<T, T | R> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class DefaultIfEmptySubscriber<T, R> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/delay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class DelayOperator<T> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class DelaySubscriber<T> extends Subscriber<T> {
Expand Down
6 changes: 3 additions & 3 deletions src/operator/delayWhen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class DelayWhenOperator<T> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class DelayWhenSubscriber<T, R> extends OuterSubscriber<T, R> {
Expand Down Expand Up @@ -157,7 +157,7 @@ class DelayWhenSubscriber<T, R> extends OuterSubscriber<T, R> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class SubscriptionDelayObservable<T> extends Observable<T> {
Expand All @@ -172,7 +172,7 @@ class SubscriptionDelayObservable<T> extends Observable<T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class SubscriptionDelaySubscriber<T> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/dematerialize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class DeMaterializeOperator<T extends Notification<any>, R> implements Operator<

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class DeMaterializeSubscriber<T extends Notification<any>> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/distinct.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class DistinctOperator<T> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
export class DistinctSubscriber<T> extends OuterSubscriber<T, T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/distinctUntilChanged.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class DistinctUntilChangedOperator<T, K> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class DistinctUntilChangedSubscriber<T, K> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/do.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class DoOperator<T> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class DoSubscriber<T> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/elementAt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class ElementAtOperator<T> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class ElementAtSubscriber<T> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/every.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class EveryOperator<T> implements Operator<T, boolean> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class EverySubscriber<T> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/exhaust.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class SwitchFirstOperator<T> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class SwitchFirstSubscriber<T> extends OuterSubscriber<T, T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/exhaustMap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class SwitchFirstMapOperator<T, I, R> implements Operator<T, R> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class SwitchFirstMapSubscriber<T, I, R> extends OuterSubscriber<T, I> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/expand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ interface DispatchArg<T, R> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
export class ExpandSubscriber<T, R> extends OuterSubscriber<T, R> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class FilterOperator<T> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class FilterSubscriber<T> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/finally.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class FinallyOperator<T> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class FinallySubscriber<T> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/find.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export class FindValueOperator<T> implements Operator<T, T> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
export class FindValueSubscriber<T> extends Subscriber<T> {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/first.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class FirstOperator<T, R> implements Operator<T, R> {

/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @hide true
* @extends {Ignored}
*/
class FirstSubscriber<T, R> extends Subscriber<T> {
Expand Down
Loading

0 comments on commit f822312

Please sign in to comment.