Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
moroshko committed Apr 21, 2016
1 parent 36c64d0 commit d4a0d59
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 21 deletions.
2 changes: 1 addition & 1 deletion demo/src/components/App/components/Header/redux.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import fetch from 'isomorphic-fetch';
const LOAD_STARGAZERS_SUCCESS = 'LOAD_STARGAZERS_SUCCESS';

const initialState = {
stargazers: '555'
stargazers: '712'
};

export function loadStargazers() {
Expand Down
37 changes: 19 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@
"prepublish": "npm run dist && npm run standalone"
},
"dependencies": {
"react-autowhatever": "^3.1.0",
"react-redux": "^4.4.0",
"redux": "^3.3.1"
"react-autowhatever": "^3.2.1",
"react-redux": "^4.4.5",
"redux": "^3.5.1"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0-rc.1"
"react": "^15.0.1"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"autoprefixer": "^6.3.6",
"autosuggest-highlight": "^2.1.1",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^5.0.0",
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.3",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.6.0",
Expand All @@ -45,29 +45,30 @@
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"es6-promise": "^3.1.2",
"eslint": "2.2.0",
"eslint-plugin-react": "^4.2.0",
"eslint": "2.8.0",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"happypack": "^1.1.4",
"happypack": "^2.0.4",
"ismobilejs": "^0.4.0",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^8.2.0",
"jsdom": "^8.4.0",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"mocha": "^2.4.5",
"react": "^15.0.0-rc.1",
"react-addons-test-utils": "^15.0.0-rc.1",
"react-dom": "^15.0.0-rc.1",
"react-transform-hmr": "^1.0.3",
"postcss-loader": "^0.8.2",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.1",
"react-transform-hmr": "^1.0.4",
"redux-thunk": "^2.0.1",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"svgo": "^0.6.3",
"svgo": "^0.6.4",
"svgo-loader": "^1.1.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"files": [
Expand Down
7 changes: 6 additions & 1 deletion webpack.dev.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
var path = require('path');
var webpack = require('webpack');
var autoprefixer = require('autoprefixer');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var HappyPack = require('happypack');

Expand Down Expand Up @@ -27,7 +28,7 @@ module.exports = {
},
{
test: /\.less$/,
loader: ExtractTextPlugin.extract('style', 'css?modules&localIdentName=[name]__[local]___[hash:base64:5]!autoprefixer!less'),
loader: ExtractTextPlugin.extract('style', 'css?modules&localIdentName=[name]__[local]___[hash:base64:5]!postcss!less'),
exclude: /node_modules/
},
{
Expand All @@ -41,6 +42,10 @@ module.exports = {
]
},

postcss: function() {
return [autoprefixer];
},

resolve: {
modulesDirectories: [
'node_modules',
Expand Down
7 changes: 6 additions & 1 deletion webpack.gh-pages.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
var path = require('path');
var webpack = require('webpack');
var autoprefixer = require('autoprefixer');
var ExtractTextPlugin = require('extract-text-webpack-plugin');

module.exports = {
Expand All @@ -21,7 +22,7 @@ module.exports = {
},
{
test: /\.less$/,
loader: ExtractTextPlugin.extract('style', 'css?modules&localIdentName=[name]__[local]___[hash:base64:5]!autoprefixer!less'),
loader: ExtractTextPlugin.extract('style', 'css?modules&localIdentName=[name]__[local]___[hash:base64:5]!postcss!less'),
exclude: /node_modules/
},
{
Expand All @@ -35,6 +36,10 @@ module.exports = {
]
},

postcss: function() {
return [autoprefixer];
},

resolve: {
modulesDirectories: ['node_modules', 'components', 'src']
},
Expand Down

0 comments on commit d4a0d59

Please sign in to comment.