File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5252 run : pnpm install
5353
5454 - name : Build WASM 🏗
55- run : pnpm run build
55+ run : |
56+ if [ "${{ matrix.package.name }}" = "v13" ]; then
57+ # Download prebuilt WASM for v13 since it can't build in CI
58+ mkdir -p wasm
59+ curl -o v13.tgz "https://registry.npmjs.org/@libpg-query/v13/-/v13-13.0.0.tgz"
60+ tar -xzf v13.tgz --strip-components=1 package/wasm
61+ rm v13.tgz
62+ else
63+ pnpm run build
64+ fi
5665 working-directory : ${{ matrix.package.path }}
5766
5867 - name : Upload WASM Artifacts 📦
Original file line number Diff line number Diff line change 11{
2- "name" : " @pgsql/types " ,
2+ "name" : " @libpg-query/types17 " ,
33 "version" : " 17.4.2" ,
44 "author" : " Dan Lynch <pyramation@gmail.com>" ,
5- "description" : " PostgreSQL AST types for pgsql- parser" ,
5+ "description" : " PostgreSQL AST types from the real Postgres parser" ,
66 "main" : " index.js" ,
77 "module" : " esm/index.js" ,
88 "types" : " index.d.ts" ,
1919 "bugs" : {
2020 "url" : " https://github.com/launchql/libpg-query-node/issues"
2121 },
22+ "x-publish" : {
23+ "publishName" : " @pgsql/types" ,
24+ "distTag" : " pg17"
25+ },
2226 "scripts" : {
2327 "copy" : " copyfiles -f ../../LICENSE README.md package.json dist" ,
2428 "clean" : " rimraf dist" ,
You can’t perform that action at this time.
0 commit comments