Skip to content

Commit 6533c2b

Browse files
authored
Remove unused config (#240)
* remove unused settings * change categories * add changelog * fix flaky tests
1 parent d6566f3 commit 6533c2b

4 files changed

Lines changed: 15 additions & 4 deletions

File tree

.changeset/grumpy-horses-cover.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'css-modules-kit-vscode': patch
3+
---
4+
5+
chore: change categories

.changeset/sharp-peaches-mate.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'css-modules-kit-vscode': patch
3+
---
4+
5+
chore: remove unused settings

packages/vscode/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,10 @@
2828
"typescript"
2929
],
3030
"categories": [
31-
"Other"
31+
"Programming Languages"
3232
],
3333
"activationEvents": [
34-
"onLanguage:css",
35-
"onLanguage:less",
36-
"onLanguage:scss"
34+
"onLanguage:css"
3735
],
3836
"contributes": {
3937
"typescriptServerPlugins": [

vitest.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ import { defineConfig } from 'vitest/config';
44

55
export default defineConfig({
66
test: {
7+
// On GitHub Actions, the Windows runner is slow and tests may fail with the default timeout.
8+
// Therefore, we set the timeout to 10 seconds.
9+
testTimeout: 10_000,
710
projects: [
811
{
912
test: {

0 commit comments

Comments
 (0)