Skip to content

Commit 049f048

Browse files
committedMay 18, 2023
chore: update deps
1 parent e87da3c commit 049f048

File tree

5 files changed

+2446
-2952
lines changed

5 files changed

+2446
-2952
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ dist
1010
sw.*
1111
.env
1212
.output
13+
.stylelintcache

‎package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
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",
3636
"pathe": "^1.1.0",
37-
"stylelint-webpack-plugin": "^4.1.0",
37+
"stylelint-webpack-plugin": "^4.1.1",
3838
"vite-plugin-stylelint": "^4.3.0"
3939
},
4040
"devDependencies": {
@@ -56,5 +56,5 @@
5656
"publishConfig": {
5757
"access": "public"
5858
},
59-
"packageManager": "pnpm@7.30.0"
59+
"packageManager": "pnpm@8.5.1"
6060
}

‎pnpm-lock.yaml

+2,440-2,947
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 stylelint 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 stylelint 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.