Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,8 @@ build/
# docs
**/docs
**/docs-browser
**/docs-react-native
**/docs-server
**/doc

.vscode
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ The official [MongoDB Stitch](https://stitch.mongodb.com/) SDK for JavaScript/Ty

* For the Browser SDK, please see [mongodb-stitch-browser-sdk](https://www.npmjs.com/package/mongodb-stitch-browser-sdk)
* For the Server (Node.js) SDK, please see [mongodb-stitch-server-sdk](https://www.npmjs.com/package/mongodb-stitch-server-sdk)
* For the React Native SDK, please see [mongodb-stitch-react-native-sdk](https://www.npmjs.com/package/mongodb-stitch-react-native-sdk)

### Index
- [Documentation](#documentation)
- [Discussion](#discussion)

## Documentation
* [Browser SDK API/Typedoc Documentation](https://s3.amazonaws.com/stitch-sdks/js/docs/4.0.3/index.html)
* [Server (Node.js) SDK API/Typedoc Documentation](https://s3.amazonaws.com/stitch-sdks/js-server/docs/4.0.3/index.html)
* [Browser SDK API/Typedoc Documentation](https://s3.amazonaws.com/stitch-sdks/js/docs/4.0.9/index.html)
* [Server (Node.js) SDK API/Typedoc Documentation](https://s3.amazonaws.com/stitch-sdks/js-server/docs/4.0.9/index.html)
* [React Native SDK API/Typedoc Documentation](https://s3.amazonaws.com/stitch-sdks/js-react-native/docs/4.0.9/index.html)
* [MongoDB Stitch Documentation](https://docs.mongodb.com/stitch/)

## Discussion
Expand Down
16 changes: 16 additions & 0 deletions config/tdconfig.react-native.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"extends": "./tsconfig.esm.base.json",
"compilerOptions": {
"outDir": "dist/doc-react-native"
},
"include": [
"../packages/core/sdk/src/**/*",
"../packages/core/servivces/*/src/**/*",
"../packages/react-native/core/src/**/*",
"../packages/react-native/services/*/src/**/*"
],
"exclude": [
"**/node_modules/**",
"**/dist/**"
]
}
9 changes: 9 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,14 @@
"packages": [
"packages/**"
],
"command": {
"bootstrap": {
"nohoist": [
"react-native",
"babel-jest",
"babel-preset-react-native"
]
}
},
"version": "4.0.9"
}
Loading