Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: deduplicate lock, update packages repository fields #30044

Closed
wants to merge 1 commit into from
Closed
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
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
"bin": "./cli.js",
"description": "A framework for building native apps using React",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:facebook/react-native.git"
},
"repository": "github:facebook/react-native",
"engines": {
"node": ">=10"
},
Expand Down Expand Up @@ -64,6 +61,7 @@
"format": "npm run prettier && npm run clang-format",
"prettier": "prettier --write \"./**/*.{js,md,yml}\"",
"format-check": "prettier --list-different \"./**/*.{js,md,yml}\"",
"update-lock": "npx yarn-deduplicate",
"docker-setup-android": "docker pull reactnativecommunity/react-native-android",
"docker-build-android": "docker build -t reactnativeci/android -f .circleci/Dockerfiles/Dockerfile.android .",
"test-android-run-instrumentation": "docker run --cap-add=SYS_ADMIN -it reactnativeci/android bash .circleci/Dockerfiles/scripts/run-android-docker-instrumentation-tests.sh",
Expand Down
3 changes: 2 additions & 1 deletion packages/assets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "Asset support code for React Native.",
"repository": {
"type": "git",
"url": "git@github.com:facebook/react-native.git"
"url": "git@github.com:facebook/react-native.git",
"directory": "packages/assets"
},
"license": "MIT"
}
3 changes: 2 additions & 1 deletion packages/babel-plugin-codegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "Babel plugin to generate native module and view manager code for React Native.",
"repository": {
"type": "git",
"url": "git@github.com:facebook/react-native.git"
"url": "git@github.com:facebook/react-native.git",
"directory": "packages/babel-plugin-codegen"
},
"dependencies": {
"react-native-codegen": "*"
Expand Down
3 changes: 2 additions & 1 deletion packages/eslint-config-react-native-community/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:facebook/react-native.git"
"url": "git@github.com:facebook/react-native.git",
"directory": "packages/eslint-config-react-native-community"
},
"homepage": "https://github.com/facebook/react-native/tree/master/packages/eslint-config-react-native-community#readme",
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/eslint-plugin-codegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:facebook/react-native.git"
"url": "git@github.com:facebook/react-native.git",
"directory": "packages/eslint-plugin-codegen"
},
"license": "MIT"
}
3 changes: 2 additions & 1 deletion packages/eslint-plugin-react-native-community/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:facebook/react-native.git"
"url": "git@github.com:facebook/react-native.git",
"directory": "packages/eslint-plugin-react-native-community"
},
"license": "MIT"
}
3 changes: 2 additions & 1 deletion packages/normalize-color/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "Color normalization code for React Native.",
"repository": {
"type": "git",
"url": "git@github.com:facebook/react-native.git"
"url": "git@github.com:facebook/react-native.git",
"directory": "packages/normalize-color"
},
"license": "MIT"
}
3 changes: 2 additions & 1 deletion packages/polyfills/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "Polyfills for React Native.",
"repository": {
"type": "git",
"url": "git@github.com:facebook/react-native.git"
"url": "git@github.com:facebook/react-native.git",
"directory": "packages/polyfills"
},
"license": "MIT"
}
3 changes: 2 additions & 1 deletion packages/react-native-codegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"homepage": "https://github.com/facebook/react-native/tree/master/packages/react-native-codegen",
"repository": {
"type": "git",
"url": "git@github.com:facebook/react-native.git"
"url": "git@github.com:facebook/react-native.git",
"directory": "packages/react-native-codegen"
},
"scripts": {
"build": "yarn clean && node scripts/build.js --verbose",
Expand Down
3 changes: 2 additions & 1 deletion packages/rn-tester/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"homepage": "https://github.com/facebook/react-native/tree/master/packages/rn-tester",
"repository": {
"type": "git",
"url": "git@github.com:facebook/react-native.git"
"url": "git@github.com:facebook/react-native.git",
"directory": "packages/rn-tester"
},
"dependencies": {
"invariant": "^2.2.4",
Expand Down
Loading