Skip to content

Commit 9f6ca83

Browse files
committed
Bumps node modules
1 parent f1dce6c commit 9f6ca83

5 files changed

Lines changed: 39 additions & 20 deletions

File tree

.serena/project.yml

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,26 @@ project_name: "aws-lambda-mcp-server"
33

44

55
# list of languages for which language servers are started; choose from:
6-
# al ansible bash clojure cpp
7-
# cpp_ccls crystal csharp csharp_omnisharp dart
8-
# elixir elm erlang fortran fsharp
9-
# go groovy haskell haxe hlsl
10-
# java json julia kotlin lean4
11-
# lua luau markdown matlab msl
12-
# nix ocaml pascal perl php
13-
# php_phpactor powershell python python_jedi python_ty
14-
# r rego ruby ruby_solargraph rust
15-
# scala solidity swift systemverilog terraform
16-
# toml typescript typescript_vts vue yaml
17-
# zig
6+
# al angular ansible bash clojure
7+
# cpp cpp_ccls crystal csharp csharp_omnisharp
8+
# dart elixir elm erlang fortran
9+
# fsharp go groovy haskell haxe
10+
# hlsl html java json julia
11+
# kotlin lean4 lua luau markdown
12+
# matlab msl nix ocaml pascal
13+
# perl php php_phpactor powershell python
14+
# python_jedi python_ty r rego ruby
15+
# ruby_solargraph rust scala scss solidity
16+
# swift systemverilog terraform toml typescript
17+
# typescript_vts vue yaml zig
1818
# (This list may be outdated. For the current list, see values of Language enum here:
1919
# https://github.com/oraios/serena/blob/main/src/solidlsp/ls_config.py
2020
# For some languages, there are alternative language servers, e.g. csharp_omnisharp, ruby_solargraph.)
2121
# Note:
2222
# - For C, use cpp
2323
# - For JavaScript, use typescript
24+
# - For Angular projects, use angular (subsumes typescript+html; requires `npm install` in the project root)
25+
# - For SCSS / Sass / plain CSS, use scss (some-sass-language-server handles all three)
2426
# - For Free Pascal/Lazarus, use pascal
2527
# Special requirements:
2628
# Some languages require additional setup/installations.
@@ -125,3 +127,14 @@ ignored_memory_patterns: []
125127
# The full set of modes to be activated is base_modes (from global config) + default_modes + added_modes.
126128
# See https://oraios.github.io/serena/02-usage/050_configuration.html#modes
127129
added_modes:
130+
131+
# list of additional workspace folder paths for cross-package reference support (e.g. in monorepos).
132+
# Paths can be absolute or relative to the project root.
133+
# Each folder is registered as an LSP workspace folder, enabling language servers to discover
134+
# symbols and references across package boundaries.
135+
# Currently supported for: TypeScript.
136+
# Example:
137+
# additional_workspace_folders:
138+
# - ../sibling-package
139+
# - ../shared-lib
140+
additional_workspace_folders: []

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
],
1919
"author": "poad",
2020
"license": "ISC",
21-
"packageManager": "pnpm@10.33.3"
21+
"packageManager": "pnpm@11.0.8"
2222
}

pnpm-lock.yaml

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
packages:
22
- package
33
- example
4+
allowBuilds:
5+
esbuild: false
6+
unrs-resolver: false
47
minimumReleaseAge: 10080 # 7 days in minutes
58
minimumReleaseAgeExclude:
69
- '@hono/node-server@1.19.13'
710
- hono@4.12.12
11+
- ip-address@10.1.1
812

913
overrides:
1014
'@hono/node-server@<1.19.13': '>=1.19.13'
1115
hono: '>=4.12.12'
16+
ip-address@<=10.1.0: ^10.1.1
1217
path-to-regexp@>=8.0.0 <8.4.0: '>=8.4.0'
1318
semver: '>=7'
1419

update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if [ $result -ne 0 ]; then
1414
fi
1515
echo ""
1616
pwd
17-
npx -y pnpm@latest self-update && pnpm install && pnpm up -r && pnpm audit --fix && pnpm up -r && pnpm -r --if-present --parallel build && pnpm -r --if-present --parallel lint-fix && pnpm -r --if-present --parallel build && pnpm install -r --no-frozen-lockfile
17+
npx -y pnpm@latest self-update && pnpm install && pnpm up -r && pnpm audit --fix override && pnpm up -r && pnpm -r --if-present --parallel build && pnpm -r --if-present --parallel lint-fix && pnpm -r --if-present --parallel build && pnpm install -r --no-frozen-lockfile
1818
result=$?
1919
if [ $result -ne 0 ]; then
2020
cd "${CUR}" || exit

0 commit comments

Comments
 (0)