Skip to content

Commit

Permalink
Remove dependency on kibana-ui-framework repo. (#10281)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal authored Feb 13, 2017
1 parent 0add791 commit 2563d88
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
"@bigfunger/jsondiffpatch": "0.1.38-webpack",
"@elastic/datemath": "2.3.0",
"@elastic/httpolyglot": "0.1.2-elasticpatch1",
"@elastic/kibana-ui-framework": "0.0.13",
"@elastic/webpack-directory-name-as-main": "2.0.2",
"@spalger/filesaver": "1.1.2",
"@spalger/leaflet-draw": "0.2.3",
Expand Down
2 changes: 1 addition & 1 deletion ui_framework/doc_site/src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require('./main.scss');

import 'babel-core/polyfill';
import 'babel-polyfill';
import React from 'react';
import ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
Expand Down
5 changes: 4 additions & 1 deletion ui_framework/doc_site/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ module.exports = {
loaders: [{
test: /\.jsx?$/,
loader: 'babel',
exclude: /node_modules/
exclude: /node_modules/,
query: {
presets: ['es2015', 'react'],
},
}, {
test: /\.scss$/,
loaders: ['style', 'css', 'postcss', 'sass'],
Expand Down

0 comments on commit 2563d88

Please sign in to comment.