From 4178a464cf99e4c143aa2dc351163f6f1ed1ad91 Mon Sep 17 00:00:00 2001 From: thiscaspar Date: Thu, 5 Dec 2024 10:16:36 +0800 Subject: [PATCH] Prepare v0.5.2 --- .env.example | 11 ++--------- VERSION | 2 +- package.json | 2 +- src/vite-env.d.ts | 13 ++----------- tailwind.config.js => tailwind.config.cjs | 0 5 files changed, 6 insertions(+), 22 deletions(-) rename tailwind.config.js => tailwind.config.cjs (100%) diff --git a/.env.example b/.env.example index 7dbabda..bfed409 100644 --- a/.env.example +++ b/.env.example @@ -1,9 +1,2 @@ -PUBLIC_RPC_URL=http://localhost:5050 -PUBLIC_TORII_URL=http://localhost:8080 -PUBLIC_RELAY_URL=http://localhost:8080 -PUBLIC_SERVER_URL=http://localhost:3000 -MASTER_ADDRESS=0x3c4dd268780ef738920c801edc3a75b6337bc17558c74795b530c0ff502486 -MASTER_PRIVATE_KEY=0x2bbf4f9fd0bbb2e60b0316c1fe0b76cf7a4d0198bd493ced9b8df2a3a24d68a -WORLD_ADDRESS=0x2bf4d3aa0dced89d37d8c3b4ff6a05895c0af32ff3baf9b02abf8504e53eaad -ACCOUNT_CLASS_HASH=0x05400e90f7e0ae78bd02c77cd75527280470e2fe19c54970dd79dc37a9d3645c -FEETOKEN_ADDRESS=0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7 +DEPLOYMENT=local +DEPLOYMENTS_URL=https://raw.githubusercontent.com/pixelaw/config/refs/heads/main/web.config.json \ No newline at end of file diff --git a/VERSION b/VERSION index 4b9fcbe..cb0c939 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.5.1 +0.5.2 diff --git a/package.json b/package.json index 52d4040..ed392ff 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "pixelaw-web", "private": true, - "version": "0.5.1", + "version": "0.5.2", "type": "module", "packageManager": "yarn@1.22.19", "license": "MIT", diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts index fa1f4ef..b94bac7 100644 --- a/src/vite-env.d.ts +++ b/src/vite-env.d.ts @@ -3,21 +3,12 @@ type ImportMetaEnv = { // Auto-generated by `npx vite-envs update-types` and hot-reloaded by the `vite-env` plugin // You probably want to add `/src/vite-env.d.ts` to your .prettierignore - VITE_NETWORK: string - VITE_WORLD_ADDRESS: string BASE_URL: string MODE: string DEV: boolean PROD: boolean - PUBLIC_RPC_URL: string - PUBLIC_TORII_URL: string - PUBLIC_RELAY_URL: string - PUBLIC_SERVER_URL: string - MASTER_ADDRESS: string - MASTER_PRIVATE_KEY: string - WORLD_ADDRESS: string - ACCOUNT_CLASS_HASH: string - FEETOKEN_ADDRESS: string + DEPLOYMENT: string + DEPLOYMENTS_URL: string // @user-defined-start /* * Here you can define your own special variables diff --git a/tailwind.config.js b/tailwind.config.cjs similarity index 100% rename from tailwind.config.js rename to tailwind.config.cjs