aboutsummaryrefslogtreecommitdiffstats
path: root/src/actions
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-07-02 19:49:55 -0600
committerLibravatar GitHub <noreply@github.com>2021-07-03 07:19:55 +0530
commit33123c354b79f7951423dd75097b11e7eb075f99 (patch)
tree29f6e857f02d0e0fc67d89a657a54a865ed5538a /src/actions
parentMinor refactoring to move all runtime configs from 'config.js' into 'environm... (diff)
downloadferdium-app-33123c354b79f7951423dd75097b11e7eb075f99.tar.gz
ferdium-app-33123c354b79f7951423dd75097b11e7eb075f99.tar.zst
ferdium-app-33123c354b79f7951423dd75097b11e7eb075f99.zip
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
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/index.js4
1 files changed, 2 insertions, 2 deletions
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';
17import planSelection from '../features/planSelection/actions'; 17import planSelection from '../features/planSelection/actions';
18import trialStatusBar from '../features/trialStatusBar/actions'; 18import trialStatusBar from '../features/trialStatusBar/actions';
19 19
20const actions = Object.assign({}, { 20const actions = {
21 service, 21 service,
22 recipe, 22 recipe,
23 recipePreview, 23 recipePreview,
@@ -28,7 +28,7 @@ const actions = Object.assign({}, {
28 news, 28 news,
29 settings, 29 settings,
30 requests, 30 requests,
31}); 31};
32 32
33export default Object.assign( 33export default Object.assign(
34 defineActions(actions, PropTypes.checkPropTypes), 34 defineActions(actions, PropTypes.checkPropTypes),