Update dependencies

This commit is contained in:
Mikołaj Pich 2020-01-02 16:23:09 +01:00
parent 8dfc5ca1ac
commit df69383ad2
No known key found for this signature in database
GPG key ID: F62B26E36D4C4BAA
6 changed files with 1675 additions and 1694 deletions

3340
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -8,7 +8,7 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"@mdi/font": "^3.9.97",
"@mdi/font": "^4.7.95",
"babel-runtime": "^6.26.0",
"github-markdown-css": "^3.0.1",
"moment": "^2.24.0",
@ -17,22 +17,23 @@
"vue-analytics": "^5.20.2",
"vue-async-computed": "^3.8.2",
"vue-markdown": "^2.2.4",
"vue-material-design-icons": "^3.4.0",
"vue-material-design-icons": "^4.4.0",
"vue-mq": "^1.0.1",
"vue-resource": "^1.5.1",
"vue-router": "^3.1.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"@vue/eslint-config-airbnb": "^4.0.1",
"core-js": "^3.6.1",
"@vue/cli-plugin-babel": "^4.1.2",
"@vue/cli-plugin-eslint": "^4.1.2",
"@vue/cli-service": "^4.1.2",
"@vue/eslint-config-airbnb": "^5.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.3",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.1.2",
"lint-staged": "^9.5.0",
"raw-loader": "^3.1.0",
"sass-loader": "^7.3.1",
"raw-loader": "^4.0.0",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.11"
},
"gitHooks": {

View file

@ -24,7 +24,7 @@
asyncComputed: {
async versions() {
const response = await this.$http.get('https://api.github.com/repos/wulkanowy/wulkanowy/releases');
return response.body.map(release => ({
return response.body.map((release) => ({
code: release.tag_name,
released: release.published_at,
github: release.html_url,

View file

@ -53,7 +53,7 @@
const response = await this.$http.get('https://api.github.com/repos/wulkanowy/wulkanowy/pulls?state=open');
return (await Promise.all(response.body.map(async (release) => {
const redirectorUrl = `https://bitrise-redirector.herokuapp.com/v0.1/apps/f841f20d8f8b1dc8/builds/${release.head.ref}/artifacts/0/info`;
const build = await this.$http.get(redirectorUrl).catch(error => error);
const build = await this.$http.get(redirectorUrl).catch((error) => error);
return {
title: release.title,
number: release.number,

View file

@ -29,7 +29,7 @@ Vue.config.productionTip = false;
new Vue({
router,
render: h => h(App),
render: (h) => h(App),
created() {
if (sessionStorage.redirect) {
const { redirect } = sessionStorage;

View file

@ -31,7 +31,7 @@ export default new Router({
},
{
path: '*.html',
redirect: to => to.params.pathMatch,
redirect: (to) => to.params.pathMatch,
},
{
path: '*',