Skip to content

Commit 9d4860d

Browse files
committed
fix: properly link package for dev
1 parent f01bbe9 commit 9d4860d

File tree

5 files changed

+28
-13
lines changed

5 files changed

+28
-13
lines changed

example/ios/Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PODS:
22
- boost (1.84.0)
33
- DoubleConversion (1.1.6)
4-
- FastIO (0.1.1):
4+
- FastIO (0.1.0):
55
- DoubleConversion
66
- glog
77
- hermes-engine
@@ -1558,7 +1558,7 @@ PODS:
15581558
DEPENDENCIES:
15591559
- boost (from `../../node_modules/react-native/third-party-podspecs/boost.podspec`)
15601560
- DoubleConversion (from `../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
1561-
- FastIO (from `../../node_modules/react-native-fast-io`)
1561+
- FastIO (from `../../packages/react-native-fast-io`)
15621562
- FBLazyVector (from `../../node_modules/react-native/Libraries/FBLazyVector`)
15631563
- fmt (from `../../node_modules/react-native/third-party-podspecs/fmt.podspec`)
15641564
- glog (from `../../node_modules/react-native/third-party-podspecs/glog.podspec`)
@@ -1634,7 +1634,7 @@ EXTERNAL SOURCES:
16341634
DoubleConversion:
16351635
:podspec: "../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
16361636
FastIO:
1637-
:path: "../../node_modules/react-native-fast-io"
1637+
:path: "../../packages/react-native-fast-io"
16381638
FBLazyVector:
16391639
:path: "../../node_modules/react-native/Libraries/FBLazyVector"
16401640
fmt:
@@ -1764,7 +1764,7 @@ EXTERNAL SOURCES:
17641764
SPEC CHECKSUMS:
17651765
boost: 1dca942403ed9342f98334bf4c3621f011aa7946
17661766
DoubleConversion: f16ae600a246532c4020132d54af21d0ddb2a385
1767-
FastIO: 58c29380cf3ea0dfc4e65554dfa51a43a1468b9a
1767+
FastIO: e17f05b029f123359d7936e83deda78d965d683a
17681768
FBLazyVector: aa59bef5c46e93168bffcf3dc37ee1e176de799a
17691769
fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be
17701770
glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"server": "bun server/index.ts"
99
},
1010
"dependencies": {
11+
"@azure/core-asynciterator-polyfill": "^1.0.2",
1112
"cli-table3": "^0.6.5",
1213
"react": "18.3.1",
1314
"react-native": "0.76.0",
14-
"react-native-fast-io": "0.1.1",
1515
"react-native-nitro-modules": "^0.15.0"
1616
},
1717
"devDependencies": {

example/react-native.config.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
const path = require('path')
2+
const pkg = require('../packages/react-native-fast-io/package.json')
3+
4+
module.exports = {
5+
project: {
6+
ios: {
7+
automaticPodsInstallation: true,
8+
},
9+
},
10+
dependencies: {
11+
[pkg.name]: {
12+
root: path.join(__dirname, '..', '..', 'packages', 'react-native-fast-io'),
13+
},
14+
},
15+
}

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export * from './types/fs'
22
export * from './w3c/blob'
3-
export * from './w3c/fs'
43
export * from './w3c/fetch'
4+
export * from './w3c/fs'
55
export * from './w3c/streams'
66
export * from './w3c/ws'

0 commit comments

Comments
 (0)