Skip to content

Commit e311af1

Browse files
committed
name
1 parent c19bea4 commit e311af1

35 files changed

+15
-14
lines changed

β€Ž.github/workflows/build-wasm-no-docker.yamlβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ jobs:
4242
./emsdk install 3.1.59
4343
./emsdk activate 3.1.59
4444
source ./emsdk_env.sh
45-
working-directory: libpq-query
45+
working-directory: libpg-query
4646
- name: Build with Emscripten πŸ—
4747
run: |
4848
source ./emsdk/emsdk_env.sh
4949
emmake make
5050
emmake make build
51-
working-directory: libpq-query
51+
working-directory: libpg-query
5252
- name: Archive production artifacts πŸ›
5353
uses: actions/upload-artifact@v4
5454
with:
5555
name: wasm-artifacts
56-
path: libpq-query/wasm
56+
path: libpg-query/wasm

β€Ž.github/workflows/build-wasm.ymlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
- name: Build WASM πŸ—
4040
run: pnpm run build
41-
working-directory: libpq-query
41+
working-directory: libpg-query
4242

4343
- name: Archive production artifacts πŸ›
4444
uses: actions/upload-artifact@v4
4545
with:
4646
name: wasm-artifacts
47-
path: libpq-query/wasm/
47+
path: libpg-query/wasm/
4848
retention-days: 7

β€Ž.github/workflows/ci.ymlβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343

4444
- name: Build WASM πŸ—
4545
run: pnpm run build
46-
working-directory: libpq-query
46+
working-directory: libpg-query
4747

4848
- name: Upload WASM Artifacts πŸ“¦
4949
uses: actions/upload-artifact@v4
5050
with:
5151
name: wasm-artifacts
52-
path: libpq-query/wasm/
52+
path: libpg-query/wasm/
5353
retention-days: 1
5454

5555
test:
@@ -94,7 +94,7 @@ jobs:
9494
uses: actions/download-artifact@v4
9595
with:
9696
name: wasm-artifacts
97-
path: libpq-query/wasm/
97+
path: libpg-query/wasm/
9898

9999
- name: Run Tests πŸ”
100100
run: pnpm run test

β€Ž.vscode/settings.jsonβ€Ž

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"workbench.colorTheme": "Default Dark Modern",
3+
"workbench.startupEditor": "none"
4+
}

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
**2024-06: This project has migrated to a [pnpm workspace](https://pnpm.io/workspaces)!**
88

99
- All development and CI now use pnpm for dependency management and scripts.
10-
- The main package is now located in the `libpq-query` subdirectory.
10+
- The main package is now located in the `libpg-query` subdirectory.
1111
- Please use `pnpm install`, `pnpm run build`, `pnpm run test`, and `pnpm run clean` from the root directory.
1212
- See below for updated instructions.
1313

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
Β (0)