Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
iCrawl committed May 7, 2023
1 parent b8ce537 commit a20e892
Show file tree
Hide file tree
Showing 8 changed files with 4,252 additions and 2,964 deletions.
8 changes: 2 additions & 6 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@
"jest": true
},
"rules": {
"vue/multi-word-component-names": [
2,
{
"ignores": ["[...all]", "Logo", "Spinner"]
}
]
"vue/multi-word-component-names": 0,
"vue/valid-attribute-name": 0
}
}
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Node v16
- name: Install Node v18
uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18

- name: Install dependencies
run: npm ci
Expand All @@ -22,7 +22,7 @@ jobs:
run: npm run build

- name: Deploy site
uses: JamesIves/github-pages-deploy-action@4.1.4
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
branch: gh-pages
folder: dist
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Node v16
- name: Install Node v18
uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18

- name: Install dependencies
run: npm ci
Expand All @@ -24,12 +24,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Node v16
- name: Install Node v18
uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18

- name: Install dependencies
run: npm ci
Expand Down
14 changes: 8 additions & 6 deletions components.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
// generated by unplugin-vue-components
// We suggest you to commit this file into source control
// Read more: https://github.com/vuejs/vue-next/pull/3399
import '@vue/runtime-core';
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
import '@vue/runtime-core'

export {};

declare module '@vue/runtime-core' {
export interface GlobalComponents {
Expand Down Expand Up @@ -47,5 +51,3 @@ declare module '@vue/runtime-core' {
Types: typeof import('./src/components/Types.vue')['default'];
}
}

export {};
Loading

0 comments on commit a20e892

Please sign in to comment.