Skip to content

Commit

Permalink
Merge branch 'update-dependencies'
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisBarranqueiro committed Jul 6, 2016
2 parents 05c617c + ac9ae11 commit 3de8288
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,26 +57,26 @@
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.2.0",
"eslint": "^2.8.0",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-react": "^2.3.0",
"eslint": "^3.0.1",
"eslint-config-standard": "^5.3.1",
"eslint-config-standard-react": "^2.5.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "^5.0.1",
"eslint-plugin-standard": "^1.3.2",
"expect": "^1.18.0",
"express": "^4.13.4",
"faker": "^3.1.0",
"file-loader": "^0.8.5",
"file-loader": "^0.9.0",
"font-awesome": "^4.6.1",
"html-webpack-plugin": "^2.17.0",
"import": "0.0.6",
"isparta-loader": "^2.0.0",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma": "^1.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^0.5.5",
"karma-coverage": "^1.0.0",
"karma-coveralls": "^1.1.2",
"karma-mocha": "^0.2.2",
"karma-mocha": "1.1.1",
"karma-mocha-reporter": "^2.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
Expand All @@ -92,15 +92,15 @@
"redux-mock-store": "^1.0.2",
"redux-thunk": "^2.1.0",
"requirejs": "^2.2.0",
"sass-loader": "^3.2.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"lodash": "^4.12.0",
"redux-actions": "^0.9.1"
"lodash": "^4.13.1",
"redux-actions": "^0.10.0"
}
}
4 changes: 2 additions & 2 deletions src/store/notifications.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const addNotification = (notification) => (dispatch) => {
};

// Add a notification (action creator)
const _addNotification = createAction(ADD_NOTIFICATION, (notification) => notification);
const _addNotification = createAction(ADD_NOTIFICATION);

// Update a notification (action creator)
export const updateNotification = createAction(UPDATE_NOTIFICATION, (notification) => {
Expand All @@ -34,7 +34,7 @@ export const updateNotification = createAction(UPDATE_NOTIFICATION, (notificatio
});

// Remove a notification (action creator)
export const removeNotification = createAction(REMOVE_NOTIFICATION, (id) => id);
export const removeNotification = createAction(REMOVE_NOTIFICATION);

// Action creators
export const actions = {
Expand Down

0 comments on commit 3de8288

Please sign in to comment.