Skip to content

Commit 2715fbb

Browse files
committed
v3.9.1
1 parent 8a05fc9 commit 2715fbb

File tree

27 files changed

+4938
-5772
lines changed

27 files changed

+4938
-5772
lines changed

client/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@
4646
"vue": "^2.6.10",
4747
"vue-cal": "^2.0.1",
4848
"vue-router": "^3.0.1",
49-
"vuex": "^3.0.0"
49+
"vuex": "^3.0.0",
50+
"vuex-router-sync": "^5.0.0"
5051
},
5152
"devDependencies": {
5253
"@babel/plugin-syntax-dynamic-import": "^7.2.0",

client/src/js/enso.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@ import Vue from 'vue';
33
import '@core/modules';
44

55
import App from '@enso-ui/ui/bulma';
6-
import router from './router';
6+
import { sync } from 'vuex-router-sync';
77
import store from './store';
8+
import router from './router';
89

910
import './app';
1011

1112
import '../sass/enso.scss';
1213

14+
sync(store, router);
15+
1316
Vue.config.productionTip = false;
1417

1518
new Vue({

client/yarn.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11179,6 +11179,11 @@ vuedraggable@^2.16.0:
1117911179
dependencies:
1118011180
sortablejs "^1.10.1"
1118111181

11182+
vuex-router-sync@^5.0.0:
11183+
version "5.0.0"
11184+
resolved "https://registry.yarnpkg.com/vuex-router-sync/-/vuex-router-sync-5.0.0.tgz#1a225c17a1dd9e2f74af0a1b2c62072e9492b305"
11185+
integrity sha512-Mry2sO4kiAG64714X1CFpTA/shUH1DmkZ26DFDtwoM/yyx6OtMrc+MxrU+7vvbNLO9LSpgwkiJ8W+rlmRtsM+w==
11186+
1118211187
vuex@^3.0.0, vuex@^3.1.0:
1118311188
version "3.1.3"
1118411189
resolved "https://registry.yarnpkg.com/vuex/-/vuex-3.1.3.tgz#f2ad73e3fb73691698b38c93f66e58e267947180"

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"sentry/sentry-laravel": "^1.0.0"
2424
},
2525
"require-dev": {
26-
"codedungeon/phpunit-result-printer": "^0.26.0",
2726
"facade/ignition": "^2.0",
2827
"filp/whoops": "^2.1.0",
2928
"fzaninotto/faker": "^1.9.1",
@@ -44,7 +43,8 @@
4443
},
4544
"autoload": {
4645
"psr-4": {
47-
"App\\": "app/"
46+
"App\\": "app/",
47+
"LaravelEnso\\Filters\\": "vendor/laravel-enso/filters/"
4848
},
4949
"classmap": [
5050
"database/seeds",

0 commit comments

Comments
 (0)