diff --git a/.github/workflows/npm-package-release.yml b/.github/workflows/npm-package-release.yml index e02488c497..6ccd88033e 100644 --- a/.github/workflows/npm-package-release.yml +++ b/.github/workflows/npm-package-release.yml @@ -102,6 +102,10 @@ jobs: # WASM linker can run out of memory on GitHub runners; add swap to prevent OOM - name: Add swap space run: | + if [ -f /swapfile ]; then + sudo swapoff /swapfile 2>/dev/null || true + sudo rm -f /swapfile + fi sudo fallocate -l 8G /swapfile sudo chmod 600 /swapfile sudo mkswap /swapfile diff --git a/packages/orderbook/package.json b/packages/orderbook/package.json index b88aae7199..40521f108c 100644 --- a/packages/orderbook/package.json +++ b/packages/orderbook/package.json @@ -1,7 +1,7 @@ { "name": "@rainlanguage/orderbook", "description": "Provides RainLanguage Orderbook rust crates' functionalities in typescript through wasm bindgen", - "version": "0.0.1-alpha.197", + "version": "0.0.1-alpha.196", "license": "LicenseRef-DCL-1.0", "author": "Rain Open Source Software Ltd", "repository": { diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 52f69bd4cd..36527c5606 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -1,9 +1,13 @@ { "name": "@rainlanguage/ui-components", - "version": "0.0.1-alpha.197", + "version": "0.0.1-alpha.196", "description": "A component library for building Svelte applications to be used with Raindex.", "license": "LicenseRef-DCL-1.0", "author": "Rain Open Source Software Ltd", + "repository": { + "type": "git", + "url": "https://github.com/rainlanguage/rain.orderbook.git" + }, "main": "dist/index.js", "module": "dist/index.js", "exports": { @@ -53,7 +57,7 @@ "@fontsource/dm-sans": "5.1.0", "@imask/svelte": "7.6.1", "@observablehq/plot": "0.6.16", - "@rainlanguage/orderbook": "0.0.1-alpha.197", + "@rainlanguage/orderbook": "0.0.1-alpha.196", "@reown/appkit": "1.6.4", "@reown/appkit-adapter-wagmi": "1.6.4", "@sentry/sveltekit": "7.120.0",