File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ py-style:
1616 SKIP=prettier,eslint pre-commit run --all-files
1717
1818ui-style :
19- npm run lint
19+ pnpm run lint
2020
2121doc-test :
2222 python -m pytest --doctest-modules sqlmesh/core sqlmesh/utils
Original file line number Diff line number Diff line change 33 "displayName" : " SQLMesh" ,
44 "description" : " Official SQLMesh extension for VSCode" ,
55 "publisher" : " tobikodata" ,
6- "version" : " 0.0.1 " ,
6+ "version" : " 0.0.7 " ,
77 "repository" : {
88 "type" : " git" ,
99 "url" : " https://github.com/tobikodata/sqlmesh"
Original file line number Diff line number Diff line change @@ -2,14 +2,16 @@ FROM mcr.microsoft.com/playwright:v1.49.0-jammy
22
33WORKDIR /app
44
5- ENV PATH /app/node_modules/.bin:$PATH
6-
75RUN apt-get update && apt-get -y install libnss3 libatk-bridge2.0-0 libdrm-dev libxkbcommon-dev libgbm-dev libasound-dev libatspi2.0-0 libxshmfence-dev
86
97# Copy package files for workspaces
108COPY package.json /app/package.json
119COPY pnpm-lock.yaml /app/pnpm-lock.yaml
10+ COPY pnpm-workspace.yaml /app/pnpm-workspace.yaml
1211COPY web/client/package.json /app/web/client/package.json
12+ COPY vscode/react/package.json /app/vscode/react/package.json
13+ COPY vscode/extension/package.json /app/vscode/extension/package.json
14+ COPY vscode/bus/package.json /app/vscode/bus/package.json
1315
1416RUN npm install -g pnpm@latest && \
1517 pnpm install --frozen-lockfile
Original file line number Diff line number Diff line change 11services :
22 app :
33 command :
4- bash -c "cd ../.. && npm install -g pnpm && pnpm install --frozen-lockfile && pnpm --prefix /app/ web/client run build"
4+ bash -c "cd ../.. && npm install -g pnpm && pnpm install --frozen-lockfile && cd web/client && pnpm run build"
55 networks : []
You can’t perform that action at this time.
0 commit comments