Skip to content

Commit

Permalink
fix(factory): use barrel files instead of node module resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
steelsojka committed Aug 7, 2017
1 parent cf70664 commit fda1c73
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
11 changes: 11 additions & 0 deletions src/applicators.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export * from './applicators/Applicator';
export * from './applicators/ComposeApplicator';
export * from './applicators/PartialApplicator';
export * from './applicators/PartialedApplicator';
export * from './applicators/PartialValueApplicator';
export * from './applicators/PostValueApplicator';
export * from './applicators/PreValueApplicator';
export * from './applicators/WrapApplicator';
export * from './applicators/BindApplicator';
export * from './applicators/InvokeApplicator';
export * from './applicators/MemoizeApplicator';
11 changes: 0 additions & 11 deletions src/applicators/index.ts

This file was deleted.

3 changes: 3 additions & 0 deletions src/factory.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './factory/DecoratorConfig';
export * from './factory/DecoratorFactory';
export * from './factory/common';
3 changes: 0 additions & 3 deletions src/factory/index.ts

This file was deleted.

8 changes: 8 additions & 0 deletions src/utils.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export * from './utils/log';
export * from './utils/resolveFunction';
export * from './utils/CompositeKeyWeakMap';
export * from './utils/returnAtIndex';
export * from './utils/copyMetaData';
export * from './utils/bind';
export * from './utils/wrapConstructor';
export * from './utils/assignAll';
8 changes: 0 additions & 8 deletions src/utils/index.ts

This file was deleted.

0 comments on commit fda1c73

Please sign in to comment.