Skip to content

Commit

Permalink
fix(dragule): use named exports (valor-software#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
lzoubek authored and valorkin committed Apr 10, 2017
1 parent 7a92c38 commit 828a434
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './components/dragula.class';
export * from './components/dragula.directive';
export * from './components/dragula.provider';
export * from './components/dragular.module';
export { dragula } from './components/dragula.class';
export { DragulaDirective } from './components/dragula.directive';
export { DragulaService } from './components/dragula.provider';
export { DragulaModule } from './components/dragular.module';
2 changes: 1 addition & 1 deletion src/ng2-dragula.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './index';
export { dragula, DragulaDirective, DragulaModule, DragulaService } from './index';

0 comments on commit 828a434

Please sign in to comment.