Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .ado/apple-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
echo "##vso[task.setvariable variable=rncli_ios_version]$(cat package.json | jq '.dependencies."@react-native-community/cli-platform-ios"')"
displayName: 'Determine react-native-macos version'
- bash: |
npm pack
npm pack ./packages/react-native
displayName: 'Pack react-native-macos'
- bash: |
git clone --progress https://github.com/microsoft/react-native-test-app.git
Expand Down
2 changes: 2 additions & 0 deletions .ado/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ trigger:
include:
- main
- '*-stable'
exclude:
- 0.72-stable
paths:
exclude:
- package.json
Expand Down
12 changes: 3 additions & 9 deletions .ado/templates/react-native-macos-init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ steps:

- template: apple-tools-setup.yml

- template: verdaccio-init.yml
- template: verdaccio-publish.yml

# First do a build of the local package, since we point the cli at the local files, it needs to be pre-built
- task: CmdLine@2
displayName: yarn install (local react-native-macos)
Expand All @@ -31,15 +34,6 @@ steps:
cd packages/react-native-macos-init
yarn build

- template: verdaccio-init.yml

- task: CmdLine@2
displayName: Set package version
inputs:
script: node scripts/set-rn-version.js -b dry-run -v 1000.0.0

- template: verdaccio-publish.yml

- task: CmdLine@2
displayName: Init new project
inputs:
Expand Down
5 changes: 0 additions & 5 deletions .ado/templates/verdaccio-publish.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
# Publishes local packages to our verdaccio server.

steps:
- script: |
npm publish --registry http://localhost:4873
displayName: Publish react-native-macos to verdaccio
workingDirectory: packages/react-native

- script: |
npx beachball publish --branch origin/$(System.PullRequest.TargetBranch) --no-push --registry http://localhost:4873 --yes --access public
displayName: Publish react-native-macos-init to verdaccio
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ package-lock.json
/packages/react-native/template/ios/Podfile.lock
/packages/rn-tester/Gemfile.lock

# RNTester sourcemaps [macOS]
/packages/rn-tester/sourcemap.*.map

# Ignore RNTester specific Pods, but keep the __offline_mirrors__ here.
/packages/rn-tester/Pods/*
!/packages/rn-tester/Pods/__offline_mirrors_hermes__
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Manually bump virtualized-lists to 0.72.0",
"packageName": "@react-native-mac/virtualized-lists",
"email": "adgleitm@microsoft.com",
"dependentChangeType": "patch"
}
2 changes: 1 addition & 1 deletion packages/react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"@react-native/gradle-plugin": "^0.72.5",
"@react-native/js-polyfills": "^0.72.1",
"@react-native/normalize-colors": "^0.72.0",
"@react-native-mac/virtualized-lists": "^0.1.0",
"@react-native-mac/virtualized-lists": "^0.72.0-0",
"abort-controller": "^3.0.0",
"anser": "^1.4.9",
"base64-js": "^1.1.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/virtualized-lists/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-native-mac/virtualized-lists",
"version": "0.1.0",
"version": "0.72.0-0",
"description": "Virtualized lists for React Native macOS.",
"repository": {
"type": "git",
Expand Down