Skip to content

Commit 6fa158d

Browse files
committed
Bumps node modules
1 parent e56f2e9 commit 6fa158d

4 files changed

Lines changed: 286 additions & 224 deletions

File tree

.serena/project.yml

Lines changed: 54 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
# language of the project (csharp, python, rust, java, typescript, go, cpp, or ruby)
2-
# * For C, use cpp
3-
# * For JavaScript, use typescript
4-
# Special requirements:
5-
# * csharp: Requires the presence of a .sln file in the project folder.
6-
language: typescript
71

82
# whether to use the project's gitignore file to ignore files
93
# Added on 2025-04-07
@@ -64,5 +58,58 @@ excluded_tools: []
6458
# initial prompt for the project. It will always be given to the LLM upon activating the project
6559
# (contrary to the memories, which are loaded on demand).
6660
initial_prompt: ""
67-
61+
# the name by which the project can be referenced within Serena
6862
project_name: "github-oauth-example"
63+
64+
# list of mode names to that are always to be included in the set of active modes
65+
# The full set of modes to be activated is base_modes + default_modes.
66+
# If the setting is undefined, the base_modes from the global configuration (serena_config.yml) apply.
67+
# Otherwise, this setting overrides the global configuration.
68+
# Set this to [] to disable base modes for this project.
69+
# Set this to a list of mode names to always include the respective modes for this project.
70+
base_modes:
71+
72+
# list of mode names that are to be activated by default.
73+
# The full set of modes to be activated is base_modes + default_modes.
74+
# If the setting is undefined, the default_modes from the global configuration (serena_config.yml) apply.
75+
# Otherwise, this overrides the setting from the global configuration (serena_config.yml).
76+
# This setting can, in turn, be overridden by CLI parameters (--mode).
77+
default_modes:
78+
79+
# list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default)
80+
included_optional_tools: []
81+
82+
# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
83+
# This cannot be combined with non-empty excluded_tools or included_optional_tools.
84+
fixed_tools: []
85+
86+
# the encoding used by text files in the project
87+
# For a list of possible encodings, see https://docs.python.org/3.11/library/codecs.html#standard-encodings
88+
encoding: utf-8
89+
90+
91+
# list of languages for which language servers are started; choose from:
92+
# al bash clojure cpp csharp
93+
# csharp_omnisharp dart elixir elm erlang
94+
# fortran fsharp go groovy haskell
95+
# java julia kotlin lua markdown
96+
# matlab nix pascal perl php
97+
# powershell python python_jedi r rego
98+
# ruby ruby_solargraph rust scala swift
99+
# terraform toml typescript typescript_vts vue
100+
# yaml zig
101+
# (This list may be outdated. For the current list, see values of Language enum here:
102+
# https://github.com/oraios/serena/blob/main/src/solidlsp/ls_config.py
103+
# For some languages, there are alternative language servers, e.g. csharp_omnisharp, ruby_solargraph.)
104+
# Note:
105+
# - For C, use cpp
106+
# - For JavaScript, use typescript
107+
# - For Free Pascal/Lazarus, use pascal
108+
# Special requirements:
109+
# Some languages require additional setup/installations.
110+
# See here for details: https://oraios.github.io/serena/01-about/020_programming-languages.html#language-servers
111+
# When using multiple languages, the first language server that supports a given file will be used for that file.
112+
# The first language is the default language and the respective language server will be used as a fallback.
113+
# Note that when using the JetBrains backend, language servers are not used and this list is correspondingly ignored.
114+
languages:
115+
- typescript

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,25 @@
3131
},
3232
"devDependencies": {
3333
"@eslint/eslintrc": "^3.3.3",
34-
"@eslint/js": "^9.39.2",
34+
"@eslint/js": "^10.0.1",
3535
"@next/eslint-plugin-next": "16.1.6",
3636
"@stylistic/eslint-plugin": "^5.7.1",
3737
"@types/mdx": "^2.0.13",
38-
"@types/node": "^25.2.1",
38+
"@types/node": "^25.2.2",
3939
"@types/react": "^19.2.13",
4040
"@types/react-dom": "^19.2.3",
41-
"eslint": "^9.39.2",
41+
"eslint": "^10.0.0",
4242
"eslint-config-next": "16.1.6",
4343
"eslint-import-resolver-typescript": "^4.4.4",
4444
"eslint-plugin-flowtype": "^8.0.3",
4545
"eslint-plugin-import": "^2.32.0",
4646
"eslint-plugin-jsx-a11y": "^6.10.2",
4747
"eslint-plugin-react": "^7.37.5",
4848
"eslint-plugin-react-hooks": "^7.0.1",
49-
"pnpm": "^10.28.2",
49+
"pnpm": "^10.29.1",
5050
"rimraf": "^6.1.2",
5151
"typescript": "^5.9.3",
5252
"typescript-eslint": "^8.54.0"
5353
},
54-
"packageManager": "pnpm@10.28.0"
54+
"packageManager": "pnpm@10.29.1"
5555
}

0 commit comments

Comments
 (0)