Skip to content

Commit 7de08da

Browse files
committedMay 18, 2023
chore: update deps
1 parent 3d97838 commit 7de08da

File tree

4 files changed

+2222
-2091
lines changed

4 files changed

+2222
-2091
lines changed
 

‎package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
"test": "pnpm lint && vitest run --coverage"
3232
},
3333
"dependencies": {
34-
"@nuxt/kit": "^3.3.1",
34+
"@nuxt/kit": "^3.5.0",
3535
"chokidar": "^3.5.3",
36-
"eslint-webpack-plugin": "^4.0.0",
36+
"eslint-webpack-plugin": "^4.0.1",
3737
"pathe": "^1.1.0",
3838
"vite-plugin-eslint": "^1.8.1"
3939
},
@@ -53,5 +53,5 @@
5353
"publishConfig": {
5454
"access": "public"
5555
},
56-
"packageManager": "pnpm@7.30.0"
56+
"packageManager": "pnpm@8.5.1"
5757
}

‎pnpm-lock.yaml

+2,217-2,086
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎test/dev.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ describe('dev', async () => {
1010

1111
test('should added eslint plugin', () => {
1212
const { nuxt } = useTestContext()
13-
expect(nuxt?.hooks._hooks['vite:extendConfig']).toHaveLength(5)
13+
expect(nuxt?.hooks._hooks['vite:extendConfig']).toHaveLength(6)
1414
})
1515
})

‎test/prod.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ describe('prod', async () => {
1010

1111
test('should not added eslint plugin', () => {
1212
const { nuxt } = useTestContext()
13-
expect(nuxt?.hooks._hooks['vite:extendConfig']).toHaveLength(4)
13+
expect(nuxt?.hooks._hooks['vite:extendConfig']).toHaveLength(5)
1414
})
1515
})

0 commit comments

Comments
 (0)
Please sign in to comment.