Skip to content

Commit

Permalink
Merge 462a890 into 312ab8a
Browse files Browse the repository at this point in the history
  • Loading branch information
loureirov committed Oct 4, 2018
2 parents 312ab8a + 462a890 commit 34348e7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 18 deletions.
14 changes: 5 additions & 9 deletions packages/sling-framework/src/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
import { html } from './lib/lit-element.bundle.js';
import { SlingElement } from './framework/SlingElement.js';
import { SlingBusinessElement } from './framework/SlingBusinessElement.js';

export {
SlingElement,
SlingBusinessElement,
html,
};
export { html } from './lib/lit-element.bundle.js';
export { SlingElement } from './framework/SlingElement.js';
export { SlingBusinessElement } from './framework/SlingBusinessElement.js';
export { withLoading } from './v1/src/business/withLoading.js';
export { withRequestParams } from './v1/src/business/withRequestParams.js';
14 changes: 5 additions & 9 deletions packages/sling-framework/src/v1/src/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
import { html } from '../../lib/lit-element.bundle.js';
import { SlingElement } from './basic/SlingElement.js';
import { SlingBusinessElement } from './business/SlingBusinessElement.js';

export {
SlingElement,
SlingBusinessElement,
html,
};
export { html } from '../../lib/lit-element.bundle.js';
export { SlingElement } from './basic/SlingElement.js';
export { SlingBusinessElement } from './business/SlingBusinessElement.js';
export { withLoading } from './business/withLoading.js';
export { withRequestParams } from './business/withRequestParams.js';

0 comments on commit 34348e7

Please sign in to comment.