diff --git a/script/android.ts b/script/android.ts index bcc7b2b..095c6d9 100644 --- a/script/android.ts +++ b/script/android.ts @@ -46,5 +46,5 @@ export const android = async (inputs: RunInputs) => { stdio: 'inherit', }) log('Build done, opening app and starting bundler..') - execSync('react-native start') + execSync('react-native start', { stdio: 'inherit' }) } diff --git a/script/ios.ts b/script/ios.ts index 37aa93e..b5749d5 100644 --- a/script/ios.ts +++ b/script/ios.ts @@ -81,5 +81,5 @@ export const ios = async (inputs: RunInputs) => { stdio: 'inherit', }) log('Build done, opening app and starting bundler..') - execSync('react-native start') + execSync('react-native start', { stdio: 'inherit' }) } diff --git a/template/app/package.json b/template/app/package.json index 24a12e2..6db809d 100644 --- a/template/app/package.json +++ b/template/app/package.json @@ -33,7 +33,7 @@ "eslint-plugin-prettier": "^5.0.1", "icon-numic-plugin": "^1.4.3", "jest": "^29.7.0", - "numic": "latest", + "numic": "^2.0.3", "react-test-renderer": "^18.2.0", "typescript": "^5.3.3" }, diff --git a/template/default/package.json b/template/default/package.json index 96bb31b..7e528fe 100644 --- a/template/default/package.json +++ b/template/default/package.json @@ -28,7 +28,7 @@ "eslint-plugin-prettier": "^5.0.1", "icon-numic-plugin": "^1.4.3", "jest": "^29.7.0", - "numic": "latest", + "numic": "^2.0.3", "react-test-renderer": "18.2.0", "typescript": "^5.3.3" }, diff --git a/website/package.json b/website/package.json index b295f74..0455914 100644 --- a/website/package.json +++ b/website/package.json @@ -9,7 +9,7 @@ "icon": "../logo.png" }, "dependencies": { - "@react-three/drei": "^9.90.1", + "@react-three/drei": "^9.90.2", "@react-three/eslint-plugin": "^0.1.1", "@react-three/fiber": "^8.15.12", "@react-three/postprocessing": "^2.15.11",