Skip to content
This repository has been archived by the owner on Oct 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #253 from kabisa/feature/upgrade-project-template-…
Browse files Browse the repository at this point in the history
…deps

Upgrade project template dependencies
  • Loading branch information
pascalw authored Mar 8, 2019
2 parents c3fa44a + 18c164d commit 3a8627d
Show file tree
Hide file tree
Showing 5 changed files with 7,100 additions and 4,066 deletions.
2 changes: 1 addition & 1 deletion project_template/config/babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = {
["@babel/transform-react-jsx", { pragma: "h" }],
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
["@babel/plugin-proposal-class-properties", { "loose": false }],
["@babel/plugin-proposal-class-properties", { loose: false }],
"@babel/plugin-proposal-json-strings"
]
};
8 changes: 4 additions & 4 deletions project_template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@
"redux": "^3.7.2"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"@babel/core": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^8.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"autoprefixer": "^7.1.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^8.0.0",
"chai": "^3.5.0",
"chromedriver": "^2.35.0",
"clean-webpack-plugin": "^0.1.16",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,7 @@ const mapDispatchToProps = dispatch => ({
onDecrement: () => dispatch({ type: actions.COUNTER_DECREMENT })
});

export default connect(mapStateToProps, mapDispatchToProps)(WelcomePage);
export default connect(
mapStateToProps,
mapDispatchToProps
)(WelcomePage);
Loading

0 comments on commit 3a8627d

Please sign in to comment.