Skip to content

Commit

Permalink
chore: regenerate lock file (react-native-community#1021)
Browse files Browse the repository at this point in the history
* chore: regenerate lock file

* add resolutions for mkdirp

* pin @types/node to 8, use corejs 2 explicitly
  • Loading branch information
thymikee authored Feb 26, 2020
1 parent ad49a0a commit ba91e87
Show file tree
Hide file tree
Showing 6 changed files with 2,699 additions and 3,599 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ debugger-ui/
templates/
global-cli/
build/
coverage/
1 change: 1 addition & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports = {
{
targets: {node: 8},
useBuiltIns: 'entry',
corejs: '2.x',
},
],
],
Expand Down
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,13 @@
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.11",
"@types/mkdirp": "^0.5.2",
"@types/node": "8",
"@types/node": "^8.0.0",
"@types/node-fetch": "^2.3.7",
"babel-jest": "^24.6.0",
"babel-plugin-module-resolver": "^3.2.0",
"chalk": "^3.0.0",
"chokidar": "^3.3.1",
"core-js": "^2.0.0",
"eslint": "^5.10.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^1.1.1",
Expand All @@ -53,5 +54,9 @@
"rimraf": "^3.0.2",
"string-length": "^2.0.0",
"typescript": "^3.8.0"
},
"resolutions": {
"mkdirp": "^0.5.1",
"@types/node": "^8.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/cli/src/tools/installPods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async function updatePods(loader: ora.Ora) {

function runSudo(command: string): Promise<void> {
return new Promise((resolve, reject) => {
sudo.exec(command, (error: Error) => {
sudo.exec(command, {name: 'React Native CLI'}, error => {
if (error) {
reject(error);
}
Expand Down
1 change: 1 addition & 0 deletions packages/platform-ios/src/commands/runIOS/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

import child_process, {
ChildProcess,
// @ts-ignore
SpawnOptionsWithoutStdio,
} from 'child_process';
import fs from 'fs';
Expand Down
Loading

0 comments on commit ba91e87

Please sign in to comment.