Skip to content

Commit

Permalink
📦 deps updates
Browse files Browse the repository at this point in the history
  • Loading branch information
albinotonnina committed Jan 14, 2018
1 parent dd953bc commit 19ae21c
Show file tree
Hide file tree
Showing 5 changed files with 8,926 additions and 27 deletions.
2 changes: 1 addition & 1 deletion example/.babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"presets": [ "es2015" ]
"presets": [ "env", "react" ]
}
26 changes: 13 additions & 13 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,24 @@
"dependencies": {
"@cycle/http": "^12.0.0",
"@cycle/run": "^1.0.0",
"history": "^2.1.2",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.6.1",
"history": "^4.7.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router": "3.2.0",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux": "^3.7.2",
"redux-cycles": "file:../",
"xstream": "^10"
},
"devDependencies": {
"@cycle/time": "^0.7.1",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"jest": "^18.1.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"jest": "^22.0.6",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0"
}
}
26 changes: 13 additions & 13 deletions example/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
var path = require('path');
const path = require("path");

module.exports = {
entry: './index.js',
const config = {
entry: "./index.js",
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
publicPath: '/static/'
path: path.join(__dirname, "dist"),
filename: "bundle.js",
publicPath: "/static/"
},
module: {
loaders: [
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['es2015', 'react'],
babelrc: false
exclude: /(node_modules)/,
use: {
loader: "babel-loader"
}
}
]
},
resolve: {
extensions: ['', '.js', '.jsx'],
extensions: [".js", ".jsx"]
}
};

module.exports = config;
Loading

0 comments on commit 19ae21c

Please sign in to comment.