You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,21 @@ $ npm install # install all the node dependencies
26
26
$ code .# launch vscode
27
27
```
28
28
29
+
### Building the SDK
30
+
31
+
The Parse JS SDK is built for three platforms:
32
+
33
+
- The browser
34
+
- nodejs
35
+
- react-native
36
+
37
+
When developing the SDK you can use `npm run watch` in order to rebuild your changes upon each saves.
38
+
By default, the watch command will rebuild the SDK for the node platform. You can toggle this by setting the environment variable PARSE_BUILD. Valid values are:
39
+
40
+
- node
41
+
- browser
42
+
- react-native
43
+
29
44
### Testing the code
30
45
31
46
The SDK is tested through two lenses. unit tests are run with jest and integrationt tests with jasmine.
0 commit comments