chore: update deps
This commit is contained in:
parent
0574d0bdbc
commit
e437fee7ed
12
.github/ISSUE_TEMPLATE/general.md
vendored
12
.github/ISSUE_TEMPLATE/general.md
vendored
@ -1,12 +0,0 @@
|
||||
---
|
||||
name: General
|
||||
about: General issue
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
PLEASE READ: I originally made this template for myself to mocking up apps quicker. I am glad to see you are willing to give it a try! Before your open the issue, please make sure you are reporting bugs in the template itself. **I am NOT creating this template to solve the problems you faced in your project, please use Vue or Vite's discord server to ask questions.** Thank you.
|
||||
|
||||
**Describe the bug/issue**
|
||||
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
@ -22,13 +22,11 @@ jobs:
|
||||
fail-fast: false
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: pnpm/action-setup@v2
|
||||
|
||||
- name: Set node version to ${{ matrix.node_version }}
|
||||
uses: actions/setup-node@v2
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node_version }}
|
||||
cache: pnpm
|
||||
|
||||
7
.vscode/settings.json
vendored
7
.vscode/settings.json
vendored
@ -1,11 +1,10 @@
|
||||
{
|
||||
"cSpell.words": ["Vitesse"],
|
||||
"prettier.enable": false,
|
||||
"typescript.tsdk": "node_modules/typescript/lib",
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll.eslint": true,
|
||||
"source.fixAll.eslint": true
|
||||
},
|
||||
"files.associations": {
|
||||
"*.css": "postcss",
|
||||
},
|
||||
"*.css": "postcss"
|
||||
}
|
||||
}
|
||||
|
||||
34
package.json
34
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"private": true,
|
||||
"packageManager": "pnpm@6.32.3",
|
||||
"packageManager": "pnpm@7.0.0",
|
||||
"scripts": {
|
||||
"build": "vite build",
|
||||
"dev": "vite --port 3333 --open",
|
||||
@ -10,28 +10,28 @@
|
||||
"test": "vitest"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vueuse/core": "^8.2.5",
|
||||
"vue": "^3.2.31",
|
||||
"@vueuse/core": "^8.3.1",
|
||||
"vue": "^3.2.33",
|
||||
"vue-router": "^4.0.14"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antfu/eslint-config": "^0.20.2",
|
||||
"@antfu/eslint-config": "^0.22.0",
|
||||
"@iconify-json/carbon": "^1.1.3",
|
||||
"@types/node": "^17.0.23",
|
||||
"@unocss/reset": "^0.31.0",
|
||||
"@types/node": "^17.0.30",
|
||||
"@unocss/reset": "^0.32.7",
|
||||
"@vitejs/plugin-vue": "^2.3.1",
|
||||
"@vue/test-utils": "^2.0.0-rc.19",
|
||||
"eslint": "^8.13.0",
|
||||
"@vue/test-utils": "^2.0.0-rc.21",
|
||||
"eslint": "^8.14.0",
|
||||
"jsdom": "^19.0.0",
|
||||
"pnpm": "^6.32.6",
|
||||
"typescript": "^4.6.3",
|
||||
"unocss": "^0.31.0",
|
||||
"unplugin-auto-import": "^0.7.0",
|
||||
"unplugin-vue-components": "^0.19.1",
|
||||
"vite": "^2.9.1",
|
||||
"vite-plugin-pages": "^0.22.0",
|
||||
"vitest": "^0.9.3",
|
||||
"vue-tsc": "^0.34.2"
|
||||
"pnpm": "^7.0.0",
|
||||
"typescript": "^4.6.4",
|
||||
"unocss": "^0.32.7",
|
||||
"unplugin-auto-import": "^0.7.1",
|
||||
"unplugin-vue-components": "^0.19.3",
|
||||
"vite": "^2.9.6",
|
||||
"vite-plugin-pages": "^0.23.0",
|
||||
"vitest": "^0.10.0",
|
||||
"vue-tsc": "^0.34.11"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "@antfu"
|
||||
|
||||
1033
pnpm-lock.yaml
generated
1033
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -9,7 +9,7 @@ describe('Counter.vue', () => {
|
||||
expect(wrapper.html()).toMatchSnapshot()
|
||||
})
|
||||
|
||||
it('should be interactive', async() => {
|
||||
it('should be interactive', async () => {
|
||||
const wrapper = mount(Counter, { props: { initial: 0 } })
|
||||
expect(wrapper.text()).toContain('0')
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user