feat: add workspaceItems contribution point + openProviders to contributions schema

This commit is contained in:
2026-06-19 16:41:25 +08:00
parent 0a0da4c1cb
commit 0cbab61826
7 changed files with 37 additions and 4 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ if [ "$FAILED" -ne 0 ]; then
fi
# Install dependencies if needed
if [ ! -d "$ROOT/node_modules" ]; then
if [ ! -d "$ROOT/node_modules" ] || [ ! -f "$ROOT/node_modules/.package-lock.json" ]; then
if [ -f "$ROOT/package-lock.json" ]; then
(cd "$ROOT" && npm ci --no-audit --no-fund)
report "npm ci" $?
+1 -1
View File
@@ -31,7 +31,7 @@ if [ "$FAILED" -ne 0 ]; then
fi
# Install deps if missing
if [ ! -d "$ROOT/node_modules" ]; then
if [ ! -d "$ROOT/node_modules" ] || [ ! -f "$ROOT/node_modules/.package-lock.json" ]; then
if [ -f "$ROOT/package-lock.json" ]; then
(cd "$ROOT" && npm ci --no-audit --no-fund)
report "npm ci" $?