Skip to content

Commit

Permalink
bump solid version and refactor code (#191)
Browse files Browse the repository at this point in the history
* bump solid version and refactor code

* fix versions

* change name

* restore version
  • Loading branch information
LukassF authored Jul 23, 2024
1 parent a0d27d2 commit 1dccf2c
Show file tree
Hide file tree
Showing 27 changed files with 27,093 additions and 9,734 deletions.
6 changes: 4 additions & 2 deletions sdk/apps/modal-example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ npm run dev -- --open

## Building

Solid apps are built with _adapters_, which optimise your project for deployment to different environments.
Solid apps are built with _presets_, which optimise your project for deployment to different environments.

By default, `npm run build` will generate a Node app that you can run with `npm start`. To use a different adapter, add it to the `devDependencies` in `package.json` and specify in your `vite.config.js`.
By default, `npm run build` will generate a Node app that you can run with `npm start`. To use a different preset, add it to the `devDependencies` in `package.json` and specify in your `app.config.js`.

## This project was created with the [Solid CLI](https://solid-cli.netlify.app)
3 changes: 3 additions & 0 deletions sdk/apps/modal-example/app.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { defineConfig } from '@solidjs/start/config'

export default defineConfig({})
22 changes: 12 additions & 10 deletions sdk/apps/modal-example/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "modal-example",
"type": "module",
"scripts": {
"dev": "solid-start dev",
"build": "solid-start build",
"start": "solid-start start"
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"version": "vinxi version"
},
"type": "module",
"devDependencies": {
"@types/node": "^18.11.18",
"esbuild": "^0.14.54",
Expand All @@ -19,7 +20,7 @@
"@aptos-labs/wallet-standard": "^0.0.11",
"@mysten/sui.js": "^0.42.0",
"@mysten/wallet-adapter-wallet-standard": "^0.8.0",
"@nightlylabs/nightly-connect-polkadot": "0.0.15",
"@nightlylabs/nightly-connect-polkadot": "0.0.16",
"@nightlylabs/nightly-connect-solana": "0.0.29",
"@nightlylabs/nightly-connect-sui": "0.0.29",
"@nightlylabs/wallet-selector-aptos": "0.1.2",
Expand All @@ -30,12 +31,13 @@
"@polkadot/api": "^10.10.1",
"@polkadot/extension-inject": "^0.46.5",
"@solana/web3.js": "^1.77.2",
"@solidjs/meta": "^0.28.2",
"@solidjs/router": "^0.8.2",
"buffer": "^6.0.3",
"solid-js": "^1.7.2",
"solid-start": "^0.2.26",
"solid-start-vercel": "^0.2.26",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.14.1",
"@solidjs/start": "^1.0.6",
"solid-js": "^1.8.18",
"vinxi": "^0.4.1",
"solid-start-vercel": "^0.3.11",
"solid-toast": "^0.5.0",
"undici": "^5.15.1"
},
Expand Down
Loading

0 comments on commit 1dccf2c

Please sign in to comment.