We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77aa345 commit 257f269Copy full SHA for 257f269
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "react-native-update",
3
- "version": "10.28.6",
+ "version": "10.28.7",
4
"description": "react-native hot update",
5
"main": "src/index",
6
"scripts": {
@@ -75,5 +75,6 @@
75
"react-native": "0.73",
76
"ts-jest": "^29.2.5",
77
"typescript": "^5.6.3"
78
- }
+ },
79
+ "packageManager": "[email protected]+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
80
}
scripts/check-expo-version.js
@@ -1,3 +1,10 @@
+const ownPackageJson = require('../package.json');
+
+if (process.env.npm_package_name === ownPackageJson.name) {
+ console.log('Skipping postinstall during local development.');
+ process.exit(0);
+}
7
8
const fs = require('fs');
9
const path = require('path');
10
0 commit comments