Skip to content

Commit

Permalink
make env modules names consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
Aliaksandr Yankouski committed Jul 12, 2018
1 parent 1789598 commit 147fd86
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@
* under the License.
*/

import './intl_polyfill';

export * from './index';
export { formats } from './formats';
export * from './i18n';
5 changes: 3 additions & 2 deletions packages/kbn-i18n/src/core/i18n/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@
* under the License.
*/

export { formats } from './formats';
export * from './i18n';
import './intl_polyfill';

export * from './browser';
4 changes: 2 additions & 2 deletions packages/kbn-i18n/src/core/i18n/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"browser": "./index.js",
"main": "./node.js"
"browser": "./browser.js",
"main": "./index.js"
}

0 comments on commit 147fd86

Please sign in to comment.