react-native-blockly 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
|
-
npm package that serves as a bridge between React Native and Google's [Blockly](https://developers.google.com/blockly) UNPKG version
|
|
14
|
+
npm package that serves as a bridge between React Native and Google's [Blockly](https://developers.google.com/blockly) UNPKG version.
|
|
15
15
|
|
|
16
16
|
## General Overview
|
|
17
17
|
|
|
@@ -74,6 +74,22 @@ export default function App() {
|
|
|
74
74
|
|
|
75
75
|
To see more examples, check the [examples directory](./example).
|
|
76
76
|
|
|
77
|
+
## Running the Example App
|
|
78
|
+
|
|
79
|
+
To run the example, first, clone the repo:
|
|
80
|
+
```bash
|
|
81
|
+
git https://github.com/AlanSilvaaa/react-native-blockly
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Then, navigate to the project folder and install the dependencies. This project uses yarn, so run:
|
|
85
|
+
```bash
|
|
86
|
+
yarn install
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Finally, just execute this command from the root of the project:
|
|
90
|
+
```bash
|
|
91
|
+
yarn run example android
|
|
92
|
+
```
|
|
77
93
|
|
|
78
94
|
## Contributing
|
|
79
95
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-blockly",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "npm package that serves as a bridge between React Native and Google's Blockly UNPKG version",
|
|
5
5
|
"source": "./src/index.tsx",
|
|
6
6
|
"main": "./lib/module/index.js",
|
|
7
7
|
"exports": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
],
|
|
47
47
|
"repository": {
|
|
48
48
|
"type": "git",
|
|
49
|
-
"url": "
|
|
49
|
+
"url": "https://github.com/alanSilvaaa//react-native-blockly.git"
|
|
50
50
|
},
|
|
51
51
|
"author": "AlanSilvaaa <alanbsr4@gmail.com> (https://github.com/alanSilvaaa/)",
|
|
52
52
|
"license": "MIT",
|