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
2 changes: 1 addition & 1 deletion docs/rspress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { transformerNotationHighlight } from '@shikijs/transformers';

export default withCallstackPreset(
{
context: __dirname,
context: import.meta.dirname,
docs: {
title: 'Bob - Create and build React Native libraries',
description:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"eslint-config-satya164": "^5.1.8",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript": "^5.8.3"
"typescript": "^6.0.3"
},
"resolutions": {
"@rspress/plugin-llms@2.0.0-beta.34": "patch:@rspress/plugin-llms@npm%3A2.0.0-beta.34#./.yarn/patches/@rspress-plugin-llms-npm-2.0.0-beta.34-d374542281.patch"
Expand Down
3 changes: 2 additions & 1 deletion packages/create-react-native-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"kleur": "^4.1.5",
"ora": "^9.3.0",
"pigment": "^0.4.4",
"typescript": "^5.8.3",
"typescript": "^6.0.3",
"validate-npm-package-name": "^7.0.2"
},
"devDependencies": {
Expand All @@ -61,6 +61,7 @@
"@types/dedent": "^0.7.2",
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.19.39",
"@types/validate-npm-package-name": "^4.0.2",
"del-cli": "^7.0.0"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
<% if (project.moduleConfig === 'nitro-modules' || project.viewConfig === 'nitro-view') { -%>
"react-native-nitro-modules": "^<%- versions.nitro %>",
<% } -%>
"typescript": "^6.0.2"
"typescript": "^6.0.3"
},
"peerDependencies": {
"react": "*",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
Expand Down
3 changes: 2 additions & 1 deletion packages/create-react-native-library/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"outDir": "./lib",
"tsBuildInfoFile": ".tsbuildinfo",
"declaration": true,
"sourceMap": true
"sourceMap": true,
"types": ["node"]
},
"include": ["src/**/*", "package.json"],
"exclude": ["lib", "templates"]
Expand Down
3 changes: 2 additions & 1 deletion packages/react-native-builder-bob/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"kleur": "^4.1.5",
"prompts": "^2.4.2",
"react-native-monorepo-config": "^0.3.3",
"typescript": "^5.8.3",
"typescript": "^6.0.3",
"which": "^6.0.1",
"yargs": "^18.0.0"
},
Expand All @@ -77,6 +77,7 @@
"@types/fs-extra": "^11.0.4",
"@types/json5": "^2.2.0",
"@types/mock-fs": "^4.13.4",
"@types/node": "^20.19.39",
"@types/prompts": "^2.4.9",
"@types/which": "^3.0.4",
"@types/yargs": "^17.0.35",
Expand Down
3 changes: 2 additions & 1 deletion packages/react-native-builder-bob/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"outDir": "./lib",
"tsBuildInfoFile": ".tsbuildinfo",
"declaration": true,
"sourceMap": true
"sourceMap": true,
"types": ["node"]
},
"include": ["src/**/*", "package.json"],
"exclude": ["lib", "**/__fixtures__"]
Expand Down
2 changes: 0 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
"moduleResolution": "nodenext",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
Expand Down
33 changes: 22 additions & 11 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3933,6 +3933,15 @@ __metadata:
languageName: node
linkType: hard

"@types/node@npm:^20.19.39":
version: 20.19.39
resolution: "@types/node@npm:20.19.39"
dependencies:
undici-types: "npm:~6.21.0"
checksum: 10c0/1d16da7b5f47a7415b827fcf3b94d279febf4c14671afec74a03e47856b5270023d9beb1b9aeab4d3b622fd97d61a60206cfc2cca588663181331bc592468289
languageName: node
linkType: hard

"@types/normalize-package-data@npm:^2.4.4":
version: 2.4.4
resolution: "@types/normalize-package-data@npm:2.4.4"
Expand Down Expand Up @@ -5455,6 +5464,7 @@ __metadata:
"@types/dedent": "npm:^0.7.2"
"@types/ejs": "npm:^3.1.5"
"@types/fs-extra": "npm:^11.0.4"
"@types/node": "npm:^20.19.39"
"@types/validate-npm-package-name": "npm:^4.0.2"
cross-spawn: "npm:^7.0.6"
dedent: "npm:^1.7.2"
Expand All @@ -5466,7 +5476,7 @@ __metadata:
kleur: "npm:^4.1.5"
ora: "npm:^9.3.0"
pigment: "npm:^0.4.4"
typescript: "npm:^5.8.3"
typescript: "npm:^6.0.3"
validate-npm-package-name: "npm:^7.0.2"
bin:
create-react-native-library: bin/create-react-native-library
Expand Down Expand Up @@ -10496,6 +10506,7 @@ __metadata:
"@types/fs-extra": "npm:^11.0.4"
"@types/json5": "npm:^2.2.0"
"@types/mock-fs": "npm:^4.13.4"
"@types/node": "npm:^20.19.39"
"@types/prompts": "npm:^2.4.9"
"@types/which": "npm:^3.0.4"
"@types/yargs": "npm:^17.0.35"
Expand All @@ -10517,7 +10528,7 @@ __metadata:
mock-stdin: "npm:^1.0.0"
prompts: "npm:^2.4.2"
react-native-monorepo-config: "npm:^0.3.3"
typescript: "npm:^5.8.3"
typescript: "npm:^6.0.3"
vitest: "npm:^4.1.2"
which: "npm:^6.0.1"
yargs: "npm:^18.0.0"
Expand Down Expand Up @@ -11021,7 +11032,7 @@ __metadata:
eslint-config-satya164: "npm:^5.1.8"
globals: "npm:^17.4.0"
prettier: "npm:^3.8.1"
typescript: "npm:^5.8.3"
typescript: "npm:^6.0.3"
languageName: unknown
linkType: soft

Expand Down Expand Up @@ -11819,23 +11830,23 @@ __metadata:
languageName: node
linkType: hard

"typescript@npm:^5.8.3":
version: 5.9.3
resolution: "typescript@npm:5.9.3"
"typescript@npm:^6.0.3":
version: 6.0.3
resolution: "typescript@npm:6.0.3"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 10c0/6bd7552ce39f97e711db5aa048f6f9995b53f1c52f7d8667c1abdc1700c68a76a308f579cd309ce6b53646deb4e9a1be7c813a93baaf0a28ccd536a30270e1c5
checksum: 10c0/4a25ff5045b984370f48f196b3a0120779b1b343d40b9a68d114ea5e5fff099809b2bb777576991a63a5cd59cf7bffd96ff6fe10afcefbcb8bd6fb96ad4b6606
languageName: node
linkType: hard

"typescript@patch:typescript@npm%3A^5.8.3#optional!builtin<compat/typescript>":
version: 5.9.3
resolution: "typescript@patch:typescript@npm%3A5.9.3#optional!builtin<compat/typescript>::version=5.9.3&hash=5786d5"
"typescript@patch:typescript@npm%3A^6.0.3#optional!builtin<compat/typescript>":
version: 6.0.3
resolution: "typescript@patch:typescript@npm%3A6.0.3#optional!builtin<compat/typescript>::version=6.0.3&hash=5786d5"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 10c0/ad09fdf7a756814dce65bc60c1657b40d44451346858eea230e10f2e95a289d9183b6e32e5c11e95acc0ccc214b4f36289dcad4bf1886b0adb84d711d336a430
checksum: 10c0/2f25c74e65663c248fa1ade2b8459d9ce5372ff9dad07067310f132966ebec1d93f6c42f0baf77a6b6a7a91460463f708e6887013aaade22111037457c6b25df
languageName: node
linkType: hard

Expand Down
Loading