Skip to content

Commit 0a1e07e

Browse files
committed
docs: refactor theme, update minor issues, fix build
1 parent 26402fd commit 0a1e07e

File tree

70 files changed

+1858
-476
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+1858
-476
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Upload docs artifact
2727
uses: actions/upload-pages-artifact@v3
2828
with:
29-
path: docs/build
29+
path: website/build
3030

3131
deploy-docs:
3232
permissions:

docs/biome.json

Lines changed: 0 additions & 30 deletions
This file was deleted.

examples/rn-app/ios/license_plist.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ rename:
7979
"@[email protected]": '@uidotdev/usehooks'
8080
8181
82-
"react@19.1.0": react
82+
"react@19.2.0": react
8383
"[email protected]": react-native
8484
"@[email protected]": '@jest/create-cache-key-function'
8585
"@[email protected]": '@jest/types'
@@ -697,7 +697,7 @@ manual:
697697
698698
version: '0.25.0'
699699
source: https://github.com/facebook/react
700-
file: '../../../node_modules/react-reconciler/node_modules/scheduler/LICENSE'
700+
file: '../../../node_modules/scheduler/LICENSE'
701701
- name: '@[email protected]'
702702
version: '2.4.1'
703703
source: uidotdev/usehooks
@@ -710,8 +710,8 @@ manual:
710710
version: '2.30.1'
711711
source: https://github.com/moment/moment
712712
file: '../../../node_modules/moment/LICENSE'
713-
- name: react@19.1.0
714-
version: '19.1.0'
713+
- name: react@19.2.0
714+
version: '19.2.0'
715715
source: https://github.com/facebook/react
716716
file: '../../../node_modules/react/LICENSE'
717717
@@ -1404,7 +1404,7 @@ manual:
14041404
14051405
version: '18.3.1'
14061406
source: https://github.com/facebook/react
1407-
file: '../../../node_modules/react-is/LICENSE'
1407+
file: '../../../node_modules/pretty-format/node_modules/react-is/LICENSE'
14081408
14091409
version: '0.83.1'
14101410
source: https://github.com/facebook/metro
@@ -1852,7 +1852,7 @@ manual:
18521852
18531853
version: '0.26.0'
18541854
source: https://github.com/facebook/react
1855-
file: '../../../node_modules/scheduler/LICENSE'
1855+
file: '../../../node_modules/react-native/node_modules/scheduler/LICENSE'
18561856
18571857
version: '0.1.11'
18581858
source: https://github.com/errwischt/stacktrace-parser
@@ -1940,7 +1940,7 @@ manual:
19401940
19411941
version: '16.13.1'
19421942
source: https://github.com/facebook/react
1943-
file: '../../../node_modules/hoist-non-react-statics/node_modules/react-is/LICENSE'
1943+
file: '../../../node_modules/react-is/LICENSE'
19441944
19451945
version: '3.2.1'
19461946
source: Qix-/color

examples/rn-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"@uidotdev/usehooks": "^2.4.1",
3434
"lodash": "^4.17.21",
3535
"moment": "^2.30.1",
36-
"react": "19.1.0",
36+
"react": "19.2.0",
3737
"react-native": "0.81.0",
3838
"react-native-device-info": "^14.1.1",
3939
"react-native-legal": "^1.6.0",

package.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,7 @@
1818
"eslint-plugin-ft-flow": "^3.0.11",
1919
"eslint-plugin-prettier": "^5.5.1",
2020
"jest": "^30.0.4",
21-
"nitro-codegen": "^0.27.2",
2221
"prettier": "^3.6.2",
23-
"react": "19.1.0",
24-
"react-native": "^0.81.0",
25-
"react-native-nitro-modules": "0.30.2",
2622
"react-test-renderer": "19.0.0",
2723
"ts-jest": "^29.4.0",
2824
"turbo": "^1.13.4",
@@ -34,7 +30,7 @@
3430
"scripts": {
3531
"build": "pnpm run -r build",
3632
"build:watch": "pnpm run -r --parallel build:watch",
37-
"build:docs": "pnpm -F @ottrelite/docs run build:docs",
33+
"build:docs": "pnpm -F @ottrelite/docs run build",
3834
"lint": "pnpm run -r lint",
3935
"typecheck": "pnpm run -r typecheck",
4036
"test": "pnpm run -r test",
@@ -45,7 +41,6 @@
4541
"changeset": "npx changeset",
4642
"example:android": "pnpm -F @ottrelite/example run android",
4743
"example:ios": "pnpm -F @ottrelite/example run ios",
48-
"postinstall": "npx lefthook install && (pnpm run build || exit 0;)",
4944
"pod:install": "cd examples/rn-app && pod install",
5045
"publish:npm": "pnpm -r publish:npm",
5146
"publish:yalc": "pnpm -r publish:yalc"

packages/backend-platform/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ pnpm add @ottrelite/backend-platform
5858

5959
And register the backend with Ottrelite Core in your entrypoint file (e.g. `index.js`):
6060

61-
```javascript
61+
```typescript
6262
import { OttreliteBackendPlatform } from '@ottrelite/backend-platform';
6363
import { Ottrelite } from '@ottrelite/core';
6464

packages/backend-wrapper-tracy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Additionally, for iOS run `pod install` in the `ios` directory.
5757

5858
And register the backend with Ottrelite Core in your entrypoint file (e.g. `index.js`):
5959

60-
```javascript
60+
```typescript
6161
import { OttreliteBackendTracy } from '@ottrelite/backend-wrapper-tracy';
6262
import { Ottrelite } from '@ottrelite/core';
6363

0 commit comments

Comments
 (0)