Skip to content

Commit

Permalink
test(root): use import syntax
Browse files Browse the repository at this point in the history
Using the export syntax, Rollup generates an empty bundle.
  • Loading branch information
cartant authored and davideast committed Feb 9, 2017
1 parent 7d53bd2 commit 1993c01
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/test-root.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export * from './angularfire2.spec';
export * from './database/firebase_list_factory.spec';
export * from './database/firebase_object_factory.spec';
export * from './database/firebase_list_observable.spec';
export * from './database/firebase_object_observable.spec';
export * from './database/query_observable.spec';
export * from './auth/auth.spec';
export * from './auth/auth_backend.spec';
import './angularfire2.spec';
import './database/firebase_list_factory.spec';
import './database/firebase_object_factory.spec';
import './database/firebase_list_observable.spec';
import './database/firebase_object_observable.spec';
import './database/query_observable.spec';
import './auth/auth.spec';
import './auth/auth_backend.spec';

0 comments on commit 1993c01

Please # to comment.