Skip to content

Commit be85191

Browse files
Update package.json for publishing and update README
1 parent a611fae commit be85191

File tree

5 files changed

+68
-30
lines changed

5 files changed

+68
-30
lines changed

README.md

+24-6
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ This React Native dApp is only fully functional on Android.
1515
<img src="https://github.com/solana-mobile/solana-mobile-dapp-scaffold/assets/18451967/3d83d3dc-ab65-4a2c-881d-8a229f34e392" alt="Scaffold dApp Screenshot 1" width=300 />
1616
</td>
1717
<td align="center">
18-
<img src="https://github.com/solana-mobile/solana-mobile-dapp-scaffold/assets/18451967/c6bebd4c-2bf0-4519-8d60-44c7b0d365d0" alt="Scaffold dApp Screenshot 2" width=300 />
18+
<img src="https://github.com/solana-mobile/solana-mobile-dapp-scaffold/assets/18451967/2fd69bd4-834d-45e1-8c7a-f80b5b576c96" alt="Scaffold dApp Screenshot 3" width=300 />
1919
</td>
2020
<td align="center">
21-
<img src="https://github.com/solana-mobile/solana-mobile-dapp-scaffold/assets/18451967/eda431f5-1b95-41bc-a4db-6974a339717d" alt="Scaffold dApp Screenshot 3" width=300 />
21+
<img src="https://github.com/solana-mobile/solana-mobile-dapp-scaffold/assets/18451967/cdd93c12-d9ff-4739-81af-92da5b90303a" alt="Scaffold dApp Screenshot 2" width=300 />
2222
</td>
2323
</tr>
2424
</table>
@@ -35,8 +35,7 @@ Follow the guide to make sure you:
3535
## Usage
3636
1. Initialize project template
3737
```
38-
npx react-native init MySolanaDapp --template https://github.com/solana-mobile/solana-mobile-dapp-scaffold.git
39-
cd MySolanaDapp
38+
npx react-native init MySolanaDapp --template @solana-mobile/solana-mobile-dapp-scaffold --npm
4039
```
4140
2. Install dependencies
4241
- `yarn install` or `npm install`
@@ -45,10 +44,29 @@ cd MySolanaDapp
4544

4645
## Troubleshooting
4746

48-
- `TypeError: cli.init is not a function`: This during template initialization means you have an old version of React Native CLI.
47+
- `TypeError: cli.init is not a function`
48+
- This during template initialization means you have an old version of React Native CLI.
4949
This template only works with the new CLI. You can uninstall and reinstall it as directed [here](https://stackoverflow.com/questions/72768245/typeerror-cli-init-is-not-a-function-for-react-native).
5050

51-
- `Looks like your iOS environment is not properly set`: You can ignore this during template initialization and build the Android app as normal. This template is only compatible with Android.
51+
<br>
52+
53+
- `error Failed to load configuration of your project.`
54+
- Same as above, but for `yarn`. [Uninstall and reinstall](https://github.com/react-native-community/cli#updating-the-cli) the CLI through yarn.
55+
56+
<br>
57+
58+
- `Looks like your iOS environment is not properly set`:
59+
- You can ignore this during template initialization and build the Android app as normal. This template is only compatible with Android.
60+
61+
<br>
62+
63+
- `Usage Error: It seems you are trying to add a package using a https:... url; we now require package names to be explicitly specified.`
64+
- This error happens on certain versions of `yarn`, and occurs if you try to initialize the template through the Github repo URL, rather than the npm package. To avoid this, use the `@solana-mobile/solana-mobile-dapp-scaffold` package as specified, or downgrade your `yarn` version to classic (1.22.x).
65+
66+
<br>
67+
68+
- `error Couldn't find the ".../@solana-mobile/solana-mobile-dapp-scaffold/template.config.js file inside "@solana-mobile/solana-mobile-dapp-scaffold" template.`
69+
- This is a [known error](https://github.com/react-native-community/cli/issues/1924) that occurs with certain versions of `yarn` (>= 3.5.0). It is fixed by running the cli command with the `--npm` flag or downgrading your version of `yarn`.
5270

5371

5472

package.json

+21-16
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,36 @@
11
{
2-
"name": "solana-mobile-dapp-scaffold",
2+
"name": "@solana-mobile/solana-mobile-dapp-scaffold",
33
"version": "0.0.1",
44
"description": "A quickstart React Native template for a Solana Mobile dApp with polyfills and dependencies installed",
55
"scripts": {
6-
"test": "exit 0"
6+
"test": "exit 0"
77
},
88
"files": [
9-
"template",
10-
"template.config.js"
9+
"template",
10+
"template.config.js"
1111
],
1212
"repository": {
13-
"type": "git",
14-
"url": "git+https://github.com/solana-mobile/solana-mobile-dapp-scaffold.git"
13+
"type": "git",
14+
"url": "git+https://github.com/solana-mobile/solana-mobile-dapp-scaffold.git"
1515
},
1616
"keywords": [
17-
"react-native",
18-
"typescript",
19-
"solana",
20-
"blockchain",
21-
"dapp",
22-
"template",
23-
"boilerplate"
17+
"react-native",
18+
"typescript",
19+
"solana",
20+
"blockchain",
21+
"dapp",
22+
"template",
23+
"boilerplate"
2424
],
2525
"author": "Michael Sulistio <[email protected]>",
2626
"license": "MIT",
2727
"bugs": {
28-
"url": "https://github.com/solana-mobile/solana-mobile-dapp-scaffold/issues"
28+
"url": "https://github.com/solana-mobile/solana-mobile-dapp-scaffold/issues"
2929
},
30-
"homepage": "https://github.com/solana-mobile/solana-mobile-dapp-scaffold#readme"
31-
}
30+
"homepage": "https://github.com/solana-mobile/solana-mobile-dapp-scaffold#readme",
31+
"dependencies": {
32+
"global": "^4.4.0",
33+
"react-native": "^0.72.3",
34+
"react-native-cli": "^2.0.1"
35+
}
36+
}

template/README.md

+22-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Follow the guide to make sure you:
3535
## Usage
3636
1. Initialize project template
3737
```
38-
npx react-native init MySolanaDapp --template https://github.com/solana-mobile/solana-mobile-dapp-scaffold.git
38+
npx react-native init MySolanaDapp --template @solana-mobile/solana-mobile-dapp-scaffold --npm
3939
```
4040
2. Install dependencies
4141
- `yarn install` or `npm install`
@@ -44,10 +44,29 @@ npx react-native init MySolanaDapp --template https://github.com/solana-mobile/s
4444

4545
## Troubleshooting
4646

47-
- `TypeError: cli.init is not a function`: This during template initialization means you have an old version of React Native CLI.
47+
- `TypeError: cli.init is not a function`
48+
- This during template initialization means you have an old version of React Native CLI.
4849
This template only works with the new CLI. You can uninstall and reinstall it as directed [here](https://stackoverflow.com/questions/72768245/typeerror-cli-init-is-not-a-function-for-react-native).
4950

50-
- `Looks like your iOS environment is not properly set`: You can ignore this during template initialization and build the Android app as normal. This template is only compatible with Android.
51+
<br>
52+
53+
- `error Failed to load configuration of your project.`
54+
- Same as above, but for `yarn`. [Uninstall and reinstall](https://github.com/react-native-community/cli#updating-the-cli) the CLI through yarn.
55+
56+
<br>
57+
58+
- `Looks like your iOS environment is not properly set`:
59+
- You can ignore this during template initialization and build the Android app as normal. This template is only compatible with Android.
60+
61+
<br>
62+
63+
- `Usage Error: It seems you are trying to add a package using a https:... url; we now require package names to be explicitly specified.`
64+
- This error happens on certain versions of `yarn`, and occurs if you try to initialize the template through the Github repo URL, rather than the npm package. To avoid this, use the `@solana-mobile/solana-mobile-dapp-scaffold` package as specified, or downgrade your `yarn` version to classic (1.22.x).
65+
66+
<br>
67+
68+
- `error Couldn't find the ".../@solana-mobile/solana-mobile-dapp-scaffold/template.config.js file inside "@solana-mobile/solana-mobile-dapp-scaffold" template.`
69+
- This is a [known error](https://github.com/react-native-community/cli/issues/1924) that occurs with certain versions of `yarn` (>= 3.5.0). It is fixed by running the cli command with the `--npm` flag or downgrading your version of `yarn`.
5170

5271

5372

template/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "SolanaMobileDAppScaffold",
33
"version": "0.0.1",
4-
"private": true,
4+
"private": false,
55
"scripts": {
66
"android": "react-native run-android",
77
"ios": "react-native run-ios",

yarn.lock

-4
This file was deleted.

0 commit comments

Comments
 (0)