From 33123c354b79f7951423dd75097b11e7eb075f99 Mon Sep 17 00:00:00 2001 From: Markus Hatvan Date: Fri, 2 Jul 2021 19:49:55 -0600 Subject: Upgrade various dependencies to latest part 2 (#1557) * Upgrade various dependencies to latest, remove unnecessary electron-hunspell - upgrade eslint and friends to latest - remove deprecated 'node-sass' in favor of 'sass' - disable new rules from 'eslint-config-airbnb' that are conflicting with current code style - add workspace config for 'vscode' that silences 'experimentalDecorator' warning and forces 'prettier' to single quote * Run yarn lint to autofix with new ruleset and worked down lint issues to zero --- src/actions/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/actions') diff --git a/src/actions/index.js b/src/actions/index.js index 9d3684edc..6f32732b9 100644 --- a/src/actions/index.js +++ b/src/actions/index.js @@ -17,7 +17,7 @@ import todos from '../features/todos/actions'; import planSelection from '../features/planSelection/actions'; import trialStatusBar from '../features/trialStatusBar/actions'; -const actions = Object.assign({}, { +const actions = { service, recipe, recipePreview, @@ -28,7 +28,7 @@ const actions = Object.assign({}, { news, settings, requests, -}); +}; export default Object.assign( defineActions(actions, PropTypes.checkPropTypes), -- cgit v1.2.3-54-g00ecf