Skip to content

Commit 65e529e

Browse files
committed
Bumps node modules
1 parent 7fa42f1 commit 65e529e

7 files changed

Lines changed: 42 additions & 68 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,14 @@ jobs:
2828
with:
2929
run_install: |
3030
- recursive: true
31+
- args: [--no-frozen-lockfile]
3132
3233
- name: Build
3334
run: |
3435
pnpm --filter @llm-ts-example/common-core build
3536
pnpm --filter @llm-ts-example/common-backend-core build
3637
pnpm --filter @llm-ts-example/common-backend-langchain build
3738
38-
- name: Debug workspace links
39-
run: |
40-
pnpm list -r --depth 0
41-
pnpm why @llm-ts-example/common-backend-core
42-
pnpm why @llm-ts-example/common-backend-langchain
43-
4439
- name: Build all packages
4540
run: pnpm build
4641

.serena/project.yml

Lines changed: 36 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,20 @@
1-
# whether to use the project's gitignore file to ignore files
2-
# Added on 2025-04-07
1+
2+
# whether to use project's .gitignore files to ignore files
33
ignore_all_files_in_gitignore: true
4-
# list of additional paths to ignore
5-
# same syntax as gitignore, so you can use * and **
6-
# Was previously called `ignored_dirs`, please update your config if you are using that.
7-
# Added (renamed) on 2025-04-07
4+
5+
# list of additional paths to ignore in this project.
6+
# Same syntax as gitignore, so you can use * and **.
7+
# Note: global ignored_paths from serena_config.yml are also applied additively.
88
ignored_paths: []
99

1010
# whether the project is in read-only mode
1111
# If set to true, all editing tools will be disabled and attempts to use them will result in an error
1212
# Added on 2025-04-18
1313
read_only: false
1414

15-
16-
# list of tool names to exclude. We recommend not excluding any tools, see the readme for more details.
17-
# Below is the complete list of tools for convenience.
18-
# To make sure you have the latest list of tools, and to view their descriptions,
19-
# execute `uv run scripts/print_tool_overview.py`.
20-
#
21-
# * `activate_project`: Activates a project by name.
22-
# * `check_onboarding_performed`: Checks whether project onboarding was already performed.
23-
# * `create_text_file`: Creates/overwrites a file in the project directory.
24-
# * `delete_lines`: Deletes a range of lines within a file.
25-
# * `delete_memory`: Deletes a memory from Serena's project-specific memory store.
26-
# * `execute_shell_command`: Executes a shell command.
27-
# * `find_referencing_code_snippets`: Finds code snippets in which the symbol at the given location is referenced.
28-
# * `find_referencing_symbols`: Finds symbols that reference the symbol at the given location (optionally filtered by type).
29-
# * `find_symbol`: Performs a global (or local) search for symbols with/containing a given name/substring (optionally filtered by type).
30-
# * `get_current_config`: Prints the current configuration of the agent, including the active and available projects, tools, contexts, and modes.
31-
# * `get_symbols_overview`: Gets an overview of the top-level symbols defined in a given file.
32-
# * `initial_instructions`: Gets the initial instructions for the current project.
33-
# Should only be used in settings where the system prompt cannot be set,
34-
# e.g. in clients you have no control over, like Claude Desktop.
35-
# * `insert_after_symbol`: Inserts content after the end of the definition of a given symbol.
36-
# * `insert_at_line`: Inserts content at a given line in a file.
37-
# * `insert_before_symbol`: Inserts content before the beginning of the definition of a given symbol.
38-
# * `list_dir`: Lists files and directories in the given directory (optionally with recursion).
39-
# * `list_memories`: Lists memories in Serena's project-specific memory store.
40-
# * `onboarding`: Performs onboarding (identifying the project structure and essential tasks, e.g. for testing or building).
41-
# * `prepare_for_new_conversation`: Provides instructions for preparing for a new conversation (in order to continue with the necessary context).
42-
# * `read_file`: Reads a file within the project directory.
43-
# * `read_memory`: Reads the memory with the given name from Serena's project-specific memory store.
44-
# * `remove_project`: Removes a project from the Serena configuration.
45-
# * `replace_lines`: Replaces a range of lines within a file with new content.
46-
# * `replace_symbol_body`: Replaces the full definition of a symbol.
47-
# * `restart_language_server`: Restarts the language server, may be necessary when edits not through Serena happen.
48-
# * `search_for_pattern`: Performs a search for a pattern in the project.
49-
# * `summarize_changes`: Provides instructions for summarizing the changes made to the codebase.
50-
# * `switch_modes`: Activates modes by providing a list of their names
51-
# * `think_about_collected_information`: Thinking tool for pondering the completeness of collected information.
52-
# * `think_about_task_adherence`: Thinking tool for determining whether the agent is still on track with the current task.
53-
# * `think_about_whether_you_are_done`: Thinking tool for determining whether the task is truly completed.
54-
# * `write_memory`: Writes a named memory (for future reference) to Serena's project-specific memory store.
15+
# list of tool names to exclude.
16+
# This extends the existing exclusions (e.g. from the global configuration)
17+
# Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html
5518
excluded_tools: []
5619

5720
# initial prompt for the project. It will always be given to the LLM upon activating the project
@@ -68,18 +31,24 @@ project_name: "llm-ts-example"
6831
# Set this to a list of mode names to always include the respective modes for this project.
6932
base_modes:
7033

71-
# list of mode names that are to be activated by default.
72-
# The full set of modes to be activated is base_modes + default_modes.
73-
# If the setting is undefined, the default_modes from the global configuration (serena_config.yml) apply.
34+
# list of mode names that are to be activated by default, overriding the setting in the global configuration.
35+
# The full set of modes to be activated is base_modes (from global config) + default_modes + added_modes.
36+
# If the setting is undefined/empty, the default_modes from the global configuration (serena_config.yml) apply.
7437
# Otherwise, this overrides the setting from the global configuration (serena_config.yml).
38+
# Therefore, you can set this to [] if you do not want the default modes defined in the global config to apply
39+
# for this project.
7540
# This setting can, in turn, be overridden by CLI parameters (--mode).
41+
# See https://oraios.github.io/serena/02-usage/050_configuration.html#modes
7642
default_modes:
7743

78-
# list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default)
44+
# list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default).
45+
# This extends the existing inclusions (e.g. from the global configuration).
46+
# Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html
7947
included_optional_tools: []
8048

8149
# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
8250
# This cannot be combined with non-empty excluded_tools or included_optional_tools.
51+
# Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html
8352
fixed_tools: []
8453

8554
# the encoding used by text files in the project
@@ -88,15 +57,18 @@ encoding: utf-8
8857

8958

9059
# list of languages for which language servers are started; choose from:
91-
# al bash clojure cpp csharp
92-
# csharp_omnisharp dart elixir elm erlang
93-
# fortran fsharp go groovy haskell
94-
# java julia kotlin lua markdown
95-
# matlab nix pascal perl php
96-
# powershell python python_jedi r rego
97-
# ruby ruby_solargraph rust scala swift
98-
# terraform toml typescript typescript_vts vue
99-
# yaml zig
60+
# al ansible bash clojure cpp
61+
# cpp_ccls crystal csharp csharp_omnisharp dart
62+
# elixir elm erlang fortran fsharp
63+
# go groovy haskell haxe hlsl
64+
# java json julia kotlin lean4
65+
# lua luau markdown matlab msl
66+
# nix ocaml pascal perl php
67+
# php_phpactor powershell python python_jedi python_ty
68+
# r rego ruby ruby_solargraph rust
69+
# scala solidity swift systemverilog terraform
70+
# toml typescript typescript_vts vue yaml
71+
# zig
10072
# (This list may be outdated. For the current list, see values of Language enum here:
10173
# https://github.com/oraios/serena/blob/main/src/solidlsp/ls_config.py
10274
# For some languages, there are alternative language servers, e.g. csharp_omnisharp, ruby_solargraph.)
@@ -148,3 +120,8 @@ ignored_memory_patterns: []
148120
# Have a look at the docstring of the constructors of the LS implementations within solidlsp (e.g., for C# or PHP) to see which options are available.
149121
# No documentation on options means no options are available.
150122
ls_specific_settings: {}
123+
124+
# list of mode names to be activated additionally for this project, e.g. ["query-projects"]
125+
# The full set of modes to be activated is base_modes (from global config) + default_modes + added_modes.
126+
# See https://oraios.github.io/serena/02-usage/050_configuration.html#modes
127+
added_modes:

common/backend/core/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"allowJs": true,
1212
"esModuleInterop": true,
1313
"outDir": "./dist",
14-
"rootDir": "./",
14+
"rootDir": "./src",
1515
"sourceRoot": "./src",
1616
"isolatedModules": true,
1717
"declaration": true,

common/backend/langchain/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"allowJs": true,
1212
"esModuleInterop": true,
1313
"outDir": "./dist",
14+
"rootDir": "./src",
1415
"sourceRoot": "./src",
1516
"isolatedModules": true,
1617
"declaration": true,

common/core/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"allowJs": true,
1212
"esModuleInterop": true,
1313
"outDir": "./dist",
14+
"rootDir": "./src",
1415
"isolatedModules": true,
1516
"declaration": true,
1617
"strict": true,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"keywords": [],
1313
"author": "",
1414
"license": "ISC",
15-
"packageManager": "pnpm@11.0.3",
15+
"packageManager": "pnpm@10.33.2",
1616
"devDependencies": {
1717
"@llm-ts-example/common-backend-core": "workspace:*",
1818
"@llm-ts-example/common-core": "workspace:*"

update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fi
2222
echo ""
2323
pwd
2424

25-
if ! (npx -y pnpm@latest self-update latest-11 && pnpm install -r && pnpm up -r && pnpm audit --fix override && pnpm up -r && pnpm lint-fix && pnpm build && pnpm install -r --no-frozen-lockfile); then
25+
if ! (npx -y pnpm@latest self-update && pnpm install -r && pnpm up -r && pnpm audit --fix && pnpm up -r && pnpm lint-fix && pnpm build && pnpm install -r --no-frozen-lockfile); then
2626
cd "${CUR}" || exit
2727
exit 1
2828
fi

0 commit comments

Comments
 (0)