Skip to content

Commit 277f9c0

Browse files
authored
Fix broken links & update cookie (#3805)
* Fix links * Yarn dedupe * Update cookie
1 parent c183fab commit 277f9c0

File tree

3 files changed

+74
-884
lines changed

3 files changed

+74
-884
lines changed

Diff for: CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This guide assumes you:
66

77
- Have read through the [React Native Docs](https://reactnative.dev/docs/getting-started). In particular:
88
- Understand classes vs function components (we use the latter) and [hooks](https://reactjs.org/docs/hooks-intro.html). Here's a good [video](https://www.youtube.com/watch?v=dpw9EHDh2bM) that explains function components and hooks for traditional OOP developers.
9-
- Understand [Native Modules](https://reactnative.dev/docs/native-modules-ios).
9+
- Understand [Native Modules](https://reactnative.dev/docs/0.74/native-modules-intro).
1010
- Have a local fork of FluentUI React Native and have run the test app.
1111

1212
## Understanding the Repository Structure
@@ -82,7 +82,7 @@ Reach out to Samuel Freiberg with any questions related to E2E testing.
8282

8383
## Adding native code to your new component
8484

85-
Through the power of [Native Modules](https://reactnative.dev/docs/native-modules-intro), we are able to create components that are comprised of native platform code, rather than JS. This is particularly useful if you want platform specific behavior, or if you want a component that feels much more aligned to it's specific platform. The downside is you must implement the Native module for every platform you wish to support. It's worth investigating whether you truly need a native module, or if a more cross platform JS implementation is the better approach.
85+
Through the power of [Native Modules](https://reactnative.dev/docs/0.74/native-modules-intro), we are able to create components that are comprised of native platform code, rather than JS. This is particularly useful if you want platform specific behavior, or if you want a component that feels much more aligned to it's specific platform. The downside is you must implement the Native module for every platform you wish to support. It's worth investigating whether you truly need a native module, or if a more cross platform JS implementation is the better approach.
8686

8787
There are a few caveats to know of adding a native module to a FluentUI React Native component:
8888

Diff for: tester_deps/yarn.lock

+8-8
Original file line numberDiff line numberDiff line change
@@ -2332,10 +2332,10 @@ __metadata:
23322332
languageName: node
23332333
linkType: hard
23342334

2335-
"cookie@npm:0.6.0":
2336-
version: 0.6.0
2337-
resolution: "cookie@npm:0.6.0"
2338-
checksum: 10c0/f2318b31af7a31b4ddb4a678d024514df5e705f9be5909a192d7f116cfb6d45cbacf96a473fa733faa95050e7cff26e7832bb3ef94751592f1387b71c8956686
2335+
"cookie@npm:0.7.1":
2336+
version: 0.7.1
2337+
resolution: "cookie@npm:0.7.1"
2338+
checksum: 10c0/5de60c67a410e7c8dc8a46a4b72eb0fe925871d057c9a5d2c0e8145c4270a4f81076de83410c4d397179744b478e33cd80ccbcc457abf40a9409ad27dcd21dde
23392339
languageName: node
23402340
linkType: hard
23412341

@@ -2998,15 +2998,15 @@ __metadata:
29982998
linkType: hard
29992999

30003000
"express@npm:^4.19.2":
3001-
version: 4.21.0
3002-
resolution: "express@npm:4.21.0"
3001+
version: 4.21.1
3002+
resolution: "express@npm:4.21.1"
30033003
dependencies:
30043004
accepts: "npm:~1.3.8"
30053005
array-flatten: "npm:1.1.1"
30063006
body-parser: "npm:1.20.3"
30073007
content-disposition: "npm:0.5.4"
30083008
content-type: "npm:~1.0.4"
3009-
cookie: "npm:0.6.0"
3009+
cookie: "npm:0.7.1"
30103010
cookie-signature: "npm:1.0.6"
30113011
debug: "npm:2.6.9"
30123012
depd: "npm:2.0.0"
@@ -3032,7 +3032,7 @@ __metadata:
30323032
type-is: "npm:~1.6.18"
30333033
utils-merge: "npm:1.0.1"
30343034
vary: "npm:~1.1.2"
3035-
checksum: 10c0/4cf7ca328f3fdeb720f30ccb2ea7708bfa7d345f9cc460b64a82bf1b2c91e5b5852ba15a9a11b2a165d6089acf83457fc477dc904d59cd71ed34c7a91762c6cc
3035+
checksum: 10c0/0c287867e5f6129d3def1edd9b63103a53c40d4dc8628839d4b6827e35eb8f0de5a4656f9d85f4457eba584f9871ebb2ad26c750b36bd75d9bbb8bcebdc4892c
30363036
languageName: node
30373037
linkType: hard
30383038

0 commit comments

Comments
 (0)