Skip to content
This repository was archived by the owner on Apr 1, 2021. It is now read-only.

Commit 54e8b75

Browse files
committed
upgrade: dependencies version
2 parents 91b8beb + 7c0fae0 commit 54e8b75

File tree

14 files changed

+1261
-1041
lines changed

14 files changed

+1261
-1041
lines changed

package-lock.json

Lines changed: 1207 additions & 987 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -27,58 +27,58 @@
2727
"babel-plugin-wildcard": "^5.0.0",
2828
"babel-preset-stage-2": "^6.24.1",
2929
"cross-env": "^5.2",
30-
"eslint": "^5.15.1",
31-
"eslint-config-adenvt": "^2.1.0",
30+
"eslint": "^5.16.0",
31+
"eslint-config-adenvt": "^3.0.0",
3232
"eslint-config-standard": "^12.0.0",
3333
"eslint-formatter-pretty": "^2.1.1",
3434
"eslint-plugin-import": "^2.16.0",
3535
"eslint-plugin-node": "^8.0.1",
36-
"eslint-plugin-promise": "^4.0.1",
36+
"eslint-plugin-promise": "^4.1.1",
3737
"eslint-plugin-standard": "^4.0.0",
38-
"eslint-plugin-unicorn": "^8.0.0",
38+
"eslint-plugin-unicorn": "^8.0.2",
3939
"eslint-plugin-varspacing": "^1.2.1",
4040
"eslint-plugin-vue": "^5.2.2",
41-
"laravel-mix": "^4.0.14",
41+
"laravel-mix": "^4.0.15",
4242
"node-sass": "^4.11.0",
4343
"offline-plugin": "^5.0.6",
4444
"pre-commit": "^1.2.2",
4545
"prettier": "1.16.4",
46-
"resolve-url-loader": "^3.0.1",
47-
"sass": "^1.17.2",
46+
"resolve-url-loader": "^3.1.0",
47+
"sass": "^1.18.0",
4848
"sass-loader": "^7.1.0",
4949
"stylelint": "^9.10.1",
50-
"stylelint-config-sass-guidelines": "^5.3.0",
50+
"stylelint-config-sass-guidelines": "^5.4.0",
5151
"stylelint-scss": "^3.5.4",
5252
"uglifyjs-webpack-plugin": "^2.1.2",
5353
"vue-loader": "15.7.0",
54-
"vue-template-compiler": "^2.6.8",
54+
"vue-template-compiler": "^2.6.10",
5555
"webpackbar": "^3.1.5"
5656
},
5757
"dependencies": {
5858
"animate.css": "^3.7.0",
5959
"axios": "^0.18",
6060
"bootstrap": "^4.3.1",
61-
"bootstrap-vue": "^2.0.0-rc.13",
62-
"chart.js": "^2.7.3",
61+
"bootstrap-vue": "^2.0.0-rc.18",
62+
"chart.js": "^2.8.0",
6363
"flag-icon-css": "^3.3.0",
6464
"font-awesome": "^4.7.0",
65-
"jquery": "^3.3",
65+
"jquery": "^3.4",
6666
"lodash": "^4.17.11",
6767
"moment": "^2.24.0",
68-
"popper.js": "^1.14.7",
68+
"popper.js": "^1.15.0",
6969
"select2": "^4.0.6-rc.1",
7070
"select2-bootstrap4-theme": "^1.0.0",
7171
"simple-line-icons": "^2.4.1",
72-
"vue": "^2.6.8",
73-
"vue-chartjs": "^3.4.0",
72+
"vue": "^2.6.10",
73+
"vue-chartjs": "^3.4.2",
7474
"vue-loading-spinner": "^1.0.11",
7575
"vue-notification": "^1.3.16",
76-
"vue-router": "^3.0.2",
76+
"vue-router": "^3.0.4",
7777
"vue-sweetalert2": "^1.6.4",
7878
"vuejs-datepicker": "^1.5.4",
7979
"vuelidate": "^0.7.4",
8080
"vuex": "^3.1.0",
81-
"vuex-easy-access": "^3.1.5"
81+
"vuex-easy-access": "^3.1.6"
8282
},
8383
"pre-commit": [
8484
"lint"

resources/js/bootstrap.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ try {
1717
// Animate CSS
1818
window.$.fn.extend({
1919
animateCss: function (animationName, callback) {
20-
const animationEnd = (function (el) {
20+
const animationEnd = (function (element) {
2121
const animations = {
2222
animation : 'animationend',
2323
OAnimation : 'oAnimationEnd',
@@ -26,7 +26,7 @@ try {
2626
}
2727

2828
for (const t in animations) {
29-
if (el.style[t] !== undefined)
29+
if (element.style[t] !== undefined)
3030
return animations[t]
3131
}
3232
})(document.createElement('div'))
@@ -47,8 +47,8 @@ try {
4747

4848
$.fn.select2.defaults.set('theme', 'bootstrap4')
4949
$.fn.select2.defaults.set('width', '100%')
50-
} catch (err) {
51-
console.error(err)
50+
} catch (error) {
51+
console.error(error)
5252
}
5353

5454
/**

resources/js/coreui/components/Header/Header.vue

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,20 +75,20 @@ export default {
7575
$('body').removeClass('header-fixed')
7676
},
7777
methods: {
78-
sidebarToggle (e) {
79-
e.preventDefault()
78+
sidebarToggle (event) {
79+
event.preventDefault()
8080
document.body.classList.toggle('sidebar-hidden')
8181
},
82-
sidebarMinimize (e) {
83-
e.preventDefault()
82+
sidebarMinimize (event) {
83+
event.preventDefault()
8484
document.body.classList.toggle('sidebar-minimized')
8585
},
86-
mobileSidebarToggle (e) {
87-
e.preventDefault()
86+
mobileSidebarToggle (event) {
87+
event.preventDefault()
8888
document.body.classList.toggle('sidebar-mobile-show')
8989
},
90-
asideToggle (e) {
91-
e.preventDefault()
90+
asideToggle (event) {
91+
event.preventDefault()
9292
document.body.classList.toggle('aside-menu-hidden')
9393
},
9494
},

resources/js/coreui/components/Loading.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default {
2323
type : String,
2424
default : 'rotate-square',
2525
validator: function (value) {
26-
return _.keys(Spinner).indexOf(_.pascalCase(value)) !== -1
26+
return _.keys(Spinner).includes(_.pascalCase(value))
2727
},
2828
},
2929
size: {

resources/js/coreui/components/Select.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
import { isArray } from 'bootstrap-vue/es/utils/array'
99
import { keys } from 'bootstrap-vue/es//utils/object'
1010
11-
function isObject (obj) {
12-
return obj && ({}).toString.call(obj) === '[object Object]'
11+
function isObject (object) {
12+
return object && ({}).toString.call(object) === '[object Object]'
1313
}
1414
1515
export default {
@@ -121,7 +121,7 @@ export default {
121121
})
122122
.val(this.value)
123123
.trigger('change.select2')
124-
.on('change', function (evt) {
124+
.on('change', function (event_) {
125125
vm.localValue = this.value
126126
vm.$emit('input', vm.localValue)
127127
})

resources/js/coreui/components/Sidebar/Sidebar.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,9 @@ export default {
146146
$('body').removeClass('sidebar-fixed')
147147
},
148148
methods: {
149-
handleClick (e) {
150-
e.preventDefault()
151-
e.target.parentElement.classList.toggle('open')
149+
handleClick (event) {
150+
event.preventDefault()
151+
event.target.parentElement.classList.toggle('open')
152152
},
153153
},
154154
}

resources/js/coreui/components/Sidebar/SidebarNavDropdown.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ export default {
3434
},
3535
},
3636
methods: {
37-
handleClick (e) {
38-
e.preventDefault()
39-
e.target.parentElement.classList.toggle('open')
37+
handleClick (event) {
38+
event.preventDefault()
39+
event.target.parentElement.classList.toggle('open')
4040
},
4141
},
4242
}

resources/js/coreui/views/sample/Dashboard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,7 @@
962962
head-variant="light"
963963
>
964964
<div slot="HEAD_avatar">
965-
<i class="icon-people"></i>
965+
<i class="icon-people" />
966966
</div>
967967

968968
<div

resources/js/coreui/views/sample/base/Cards.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
>
2727
<b-card>
2828
<template slot="header">
29-
<i class='fa fa-check'></i> Card with icon
29+
<i class="fa fa-check" /> Card with icon
3030
</template>
3131
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
3232
</b-card>

resources/js/coreui/views/sample/base/Paginations.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ export default {
141141
return { currentPage: 3 }
142142
},
143143
methods: {
144-
linkGen (pageNum) {
145-
return `#page/${pageNum}/foobar`
144+
linkGen (pageNumber) {
145+
return `#page/${pageNumber}/foobar`
146146
},
147147
},
148148
}

resources/js/coreui/views/sample/base/Table.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@
4646
*/
4747
const shuffleArray = (array) => {
4848
for (let i = array.length - 1; i > 0; i--) {
49-
const j = Math.floor(Math.random() * (i + 1))
50-
const temp = array[i]
51-
array[i] = array[j]
52-
array[j] = temp
49+
const j = Math.floor(Math.random() * (i + 1))
50+
const temporary = array[i]
51+
array[i] = array[j]
52+
array[j] = temporary
5353
}
5454
return array
5555
}

resources/js/coreui/views/sample/base/Tables.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@
44
<b-col lg="6">
55
<c-table>
66
<template slot="caption">
7-
<i class="fa fa-align-justify"></i> Simple Table
7+
<i class="fa fa-align-justify" /> Simple Table
88
</template>
99
</c-table>
1010
</b-col><!--/.col-->
1111

1212
<b-col lg="6">
1313
<c-table striped>
1414
<template slot="caption">
15-
<i class='fa fa-align-justify'></i> Striped Table
15+
<i class="fa fa-align-justify" /> Striped Table
1616
</template>
1717
</c-table>
1818
</b-col><!--/.col-->
1919
</b-row><!--/.row-->
2020

2121
<b-row>
2222
<b-col lg="6">
23-
<c-table small >
23+
<c-table small>
2424
<template slot="caption">
25-
<i class='fa fa-align-justify'></i> Condensed Table
25+
<i class="fa fa-align-justify" /> Condensed Table
2626
</template>
2727
</c-table>
2828
</b-col><!--/.col-->
@@ -33,7 +33,7 @@
3333
bordered
3434
>
3535
<template slot="caption">
36-
<i class='fa fa-align-justify'></i> Bordered Table
36+
<i class="fa fa-align-justify" /> Bordered Table
3737
</template>
3838
</c-table>
3939
</b-col><!--/.col-->
@@ -49,7 +49,7 @@
4949
fixed
5050
>
5151
<template slot="caption">
52-
<i class='fa fa-align-justify'></i> Combined All Table
52+
<i class="fa fa-align-justify" /> Combined All Table
5353
</template>
5454
</c-table>
5555
</b-col>

webpack.mix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ mix.webpackConfig({
4848
],
4949
})
5050

51-
mix.extend('vueOptions', (webpackConfig, vueOptions, ...args) => {
51+
mix.extend('vueOptions', (webpackConfig, vueOptions, ...arguments_) => {
5252
const vueLoader = webpackConfig.module.rules.find((loader) => loader.loader === 'vue-loader')
5353

5454
vueLoader.options = require('webpack-merge').smart(vueLoader.options, vueOptions)

0 commit comments

Comments
 (0)