Skip to content

Commit

Permalink
[fixed] default exports in index files to be undefined
Browse files Browse the repository at this point in the history
Reviewers: O3 Material JavaScript platform reviewers, #material_motion, O2 Material Motion, featherless

Reviewed By: #material_motion, O2 Material Motion, featherless

Tags: #material_motion

Differential Revision: http://codereview.cc/D2495
  • Loading branch information
appsforartists committed Jan 12, 2017
1 parent 6e0b7e0 commit 771bac6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/streams/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ export * from './observables';

export * from './MotionRuntime';
export { default as MotionRuntime } from './MotionRuntime';

export default undefined;
2 changes: 2 additions & 0 deletions packages/streams/src/observables/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ export { default as IndefiniteSubject } from './IndefiniteSubject';

export * from './MotionObservable';
export { default as MotionObservable } from './MotionObservable';

export default undefined;
2 changes: 2 additions & 0 deletions packages/streams/src/properties/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ export { default as ReactiveProperty } from './ReactiveProperty';

export * from './constantProperty';
export { default as constantProperty } from './constantProperty';

export default undefined;

0 comments on commit 771bac6

Please sign in to comment.