Skip to content

Commit f3715be

Browse files
authored
chore(vscode): move to central npm modules (#4219)
1 parent 357cb43 commit f3715be

9 files changed

Lines changed: 18743 additions & 17661 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- checkout
7878
- run:
7979
name: Install packages
80-
command: npm --prefix web/client ci
80+
command: npm ci
8181
- run:
8282
name: Build UI
8383
command: npm --prefix web/client run build

.circleci/continue_config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,19 +124,19 @@ jobs:
124124

125125
ui_test:
126126
docker:
127-
- image: mcr.microsoft.com/playwright:v1.40.1-jammy
127+
- image: mcr.microsoft.com/playwright:v1.52.0-jammy
128128
resource_class: medium
129129
steps:
130130
- halt_unless_client
131131
- checkout
132132
- restore_cache:
133133
keys:
134-
- v1-nm-cache-{{ checksum "web/client/package-lock.json" }}
134+
- v1-nm-cache-{{ checksum "package-lock.json" }}
135135
- run:
136136
name: Install packages
137-
command: npm --prefix web/client ci
137+
command: npm ci
138138
- save_cache:
139-
key: v1-nm-cache-{{ checksum "web/client/package-lock.json" }}
139+
key: v1-nm-cache-{{ checksum "package-lock.json" }}
140140
paths:
141141
- /root/.npm
142142
- run:

package-lock.json

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

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"workspaces": [
3+
"vscode/extension",
4+
"web/client"
5+
]
6+
}

0 commit comments

Comments
 (0)