-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchange_react_native_version.js
46 lines (37 loc) · 1.2 KB
/
change_react_native_version.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const fs = require('fs');
const path = require('path');
const https = require('https');
async function run() {
const projectPath = process.argv[2];
const reactNativeVersion = process.argv[3];
const filePath = path.join(process.cwd(), projectPath, 'package.json');
console.log(`Trying to change react-native dependency in ${filePath}`);
let packageJson = require(filePath);
const data = await fetch(`https://registry.npmjs.org/react-native/${reactNativeVersion}`);
const reactVersion = data.peerDependencies.react;
console.log(`Changed dependencies:
react-native: ${reactNativeVersion}
react: ${reactVersion}`);
packageJson.dependencies['react-native'] = reactNativeVersion;
packageJson.dependencies['react'] = reactVersion;
fs.writeFileSync(filePath, JSON.stringify(packageJson, null, 2));
}
async function fetch(url) {
return new Promise((resolve, reject) => {
https.get(url, res => {
res.setEncoding('utf8');
let body = "";
res.on('data', data => {
body += data;
});
res.on('end', () => {
body = JSON.parse(body);
resolve(body);
});
res.on('error', (error) => {
reject(error);
});
});
});
}
run();