Home
last modified time | relevance | path

Searched refs:branch (Results 1 – 25 of 196) sorted by relevance

12345678

/expo/docs/pages/eas-update/
H A Deas-cli.mdx55 cmd={['$ eas branch:view [branch-name]', '', '', '# Example', '$ eas branch:view version-1.0']}
56 cmdCopy="eas branch:view [branch-name]"
79 '$ eas update --branch [branch-name] --message "..."',
84 cmdCopy="eas update --branch [branch-name] --message"
91 ### Delete a branch
94 cmd={['$ eas branch:delete [branch-name]', '', '# Example', '$ eas branch:delete version-1.0']}
95 cmdCopy="eas branch:delete [branch-name]"
98 ### Rename a branch
104 '$ eas branch:rename --from [branch-name] --to [branch-name]',
109 cmdCopy="eas branch:rename --from [branch-name] --to [branch-name]"
[all …]
H A Drollouts.mdx3 description: Incrementally deploy updates on a new branch to a channel.
10branch to a specific channel. With rollouts, you can roll out updates from one branch to a percent…
18 In the terminal, an interactive guide will assist you in selecting a channel, choosing a branch for…
24 …confident with the update served from the new branch. This will publish the update again on the ol…
25 - **Revert:** Choose to disregard the updates on the new branch and return users to the old branch.
29 - Only one branch can be rolled out on a channel at a single time.
31 …tes to both rolled out and current branches by running `eas update --branch [branch]`, for example.
32 … cannot be used when a rollout is in progress since it cannot know which branch to associate the u…
H A Ddebug.mdx50 ### Unexpected branch
53 alt="Deployment has unexpected branch"
58 …f the deployment has an unexpected branch, we need to [map our channel to the correct branch](/#ma…
70 ### Missing branch
73 alt="Deployment has no branch"
74 src="/static/images/eas-update/deployments-no-branch.png"
78 …hannel, but it is not linked to a branch. To fix this, [map the channel to the correct branch](/#m…
122 ### Map channel to branch
128 '# eas channel:edit [channel-name] --branch [branch-name]',
132 'eas channel:edit production --branch release-1.0',
[all …]
H A Dhow-it-works.mdx48 src="/static/images/eas-update/branch.png"
57 - A channel can be linked to any branch. By default, a channel is linked to a branch of the same na…
63 alt={`Channel "production" linked to branch "production" by default`}
68branch and a "staging" branch, both on Git and on EAS. Paired with a [GitHub Action](/eas-update/g…
69branch into the "production" Git branch, which would publish an update on the "production" EAS Upd…
77 …alt={`Channel "production" linked to branch "version-1.0", channel "staging" linked to branch "ver…
83 <Terminal cmd={['$ eas channel:edit production --branch version-2.0']} />
86 …alt={`Channel "production" linked to branch "version-2.0", channel "staging" linked to branch "ver…
90 …sion-3.0" EAS Update branch. Similarly to the last step, we could link the "staging" channel to th…
92 <Terminal cmd={['$ eas channel:edit staging --branch version-3.0']} />
[all …]
/expo/packages/@expo/cli/src/utils/
H A Dobj.ts5 let branch: string | undefined;
6 while ((branch = branches.shift())) {
7 if (!(branch in current)) {
10 current = current[branch];
19 let branch: string | undefined;
20 while ((branch = branches.shift())) {
22 current[branch] = value;
26 if (!(branch in current)) {
27 current[branch] = {};
30 current = current[branch];
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/
H A Dbump-oss-version.js45 const branch = getBranchName(); constant
46 exitIfNotOnReleaseBranch(branch);
50 function exitIfNotOnReleaseBranch(branch) { argument
51 if (!isReleaseBranch(branch)) {
72 const branch = getBranchName();
79 …will trigger a release with whatever changes are on the remote branch: ${branch}. \nMake sure you …
83 console.log(`Please run 'git push ${argv.remote} ${branch}'`);
99 const npmTag = latest ? 'latest' : !prerelease ? branch : 'next';
125 branch, field
H A Dprepare-package-for-release.js41 const branch = process.env.CIRCLE_BRANCH; constant
46 if (!isReleaseBranch(branch)) {
47 console.error(`This needs to be on a release branch. On branch: ${branch}`);
95 exec(`git push ${remote} ${branch} --follow-tags`);
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/
H A Dbump-oss-version.js43 const branch = exitIfNotOnGit( constant
47 exitIfNotOnReleaseBranch(branch);
51 function exitIfNotOnReleaseBranch(branch) { argument
52 if (!isReleaseBranch(branch)) {
73 const branch = exitIfNotOnGit(
84 …will trigger a release with whatever changes are on the remote branch: ${branch}. \nMake sure you …
88 console.log(`Please run 'git push ${argv.remote} ${branch}'`);
104 const npmTag = latest ? 'latest' : !prerelease ? branch : 'next';
130 branch, field
H A Dprepare-package-for-release.js47 const branch = process.env.CIRCLE_BRANCH; constant
55 : isReleaseBranch(branch)
61 if (branch && !isReleaseBranch(branch) && !isDryRun) {
62 console.error(`This needs to be on a release branch. On branch: ${branch}`);
64 } else if (!branch && !isDryRun) {
123 exec(`git push ${remote} ${branch} --follow-tags`);
/expo/packages/@expo/config-plugins/src/utils/
H A Dobj.ts5 let branch: string | undefined;
6 while ((branch = branches.shift())) {
7 if (!(branch in current)) {
10 current = current[branch];
/expo/packages/@expo/config-plugins/build/utils/
H A Dobj.js11 let branch; variable
12 while (branch = branches.shift()) {
13 if (!(branch in current)) {
16 current = current[branch];
H A Dobj.js.map1branch","shift","undefined"],"sources":["../../src/utils/obj.ts"],"sourcesContent":["/** `lodash.g…
/expo/guides/releasing/
H A DRelease Branches.md6 …een fixed on main but not on the release branch.](#the-bug-has-been-fixed-on-main-but-not-on-the-r…
7 …has significantly diverged from the release branch.](#main-has-significantly-diverged-from-the-rel…
8 …e and test the fix on the release branch instead of main.](#it-s-easier-to-write-and-test-the-fix-…
16branch is named `sdk-XX` and is based on main. The main purpose of the release branch is to releas…
18branch, we usually will need to fix bugs. These bug fixes usually will be applicable to both the r…
22 1. Release from the release branch, not from main.
23 2. Commit bug fixes first to main, not to the release branch.
24 3. Cherry-pick the bug fixes from main to the release branch.
32 … release branch, and the version-incrementing commit is only on the release branch. The next time …
38 ### The bug has been fixed on main but not on the release branch.
[all …]
/expo/packages/@expo/cli/src/prebuild/
H A DresolveTemplate.ts23 branch: string;
71 return { username, name, branch: info['default_branch'], filePath };
75 const branch = examplePath constant
79 if (username && name && branch && t === 'tree') {
80 return { username, name, branch, filePath };
85 function hasRepo({ username, name, branch, filePath }: RepoInfo) {
89 return isUrlOk(contentsUrl + packagePath + `?ref=${branch}`); constant
94 { username, name, branch, filePath }: RepoInfo
100 const url = `https://codeload.github.com/${username}/${name}/tar.gz/${branch}`;
106 fileList: [`${name}-${branch}${filePath ? `/${filePath}` : ''}`],
/expo/home/screens/ProjectScreen/
H A DEASUpdateLaunchSection.tsx20 const branchManifests = branchesToRender.slice(0, 3).map((branch) => ({
21 name: branch.name,
22 id: branch.id,
23 latestUpdate: branch.updates[0],
36 {branchManifests.map((branch, i) => {
38 <Fragment key={branch.id}>
43 name={branch.name}
44 latestUpdate={branch.latestUpdate}
/expo/packages/expo-branch/
H A DREADME.md1 # expo-branch
5branch](https://github.com/BranchMetrics/react-native-branch-deep-linking-attribution) library wit…
/expo/packages/expo-dev-launcher/bundle/queries/
H A DuseBranchesForApp.tsx83 const branch: Branch = {
98 branches.push(branch);
100 incompatibleBranches.push(branch);
104 primeCacheWithBranch(appId, branch);
106 // side-effect: prime the cache with the first paginated updates for a branch
107 primeCacheWithUpdates(appId, branch.name, branch.updates);
180 .filter((branch) => branch.updates.length > 0) ?? [];
188 query?.data?.pages[0].branches.filter((branch) => branch.updates.length === 0) ?? [];
206 export function primeCacheWithBranch(appId: string, branch: Branch) {
207 return queryClient.setQueryData(['branches', appId, branch.name], branch);
/expo/react-native-lab/
H A DREADME.md7 …le whose origin is `expo/react-native`. We keep it on the latest `sdk-*` branch, and our `sdk-*` b…
11 …nd upstream, you should clone `expo/react-native`, make your change on a branch, and send a PR to …
15 …ur current `sdk-*` branch but we really prefer to stay close to the upstream React Native release …
17 …ease these changes to developers, add the commits to the current `sdk-*` branch of `expo/react-nat…
19 …ve been merged upstream (and prefer commits that are in a stable release branch) or are likely to …
23branch called `sdk-*`, where `*` is the version of our next SDK. This branch is based on the lates…
25branch is used in a branch of Universe called `sdk-*-candidate`. After the client apps are in a no…
/expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-branch/__tests__/
H A DwithAndroidBranch-test.ts21 getBranchApiKey({ android: { config: { branch: { apiKey: 'MY-API-KEY' } } } } as any)
28 { android: { config: { branch: { apiKey: 'MY-API-KEY' } } } } as any,
38 { android: { config: { branch: { apiKey: null } } } } as any,
H A DwithIosBranch-test.ts9 expect(getBranchApiKey({ ios: { config: { branch: { apiKey: '123' } } } })).toBe('123');
13 expect(setBranchApiKey({ ios: { config: { branch: { apiKey: '123' } } } }, {})).toMatchObject({
/expo/packages/expo-branch/plugin/src/__tests__/
H A DwithBranchAndroid-test.ts19 getBranchApiKey({ android: { config: { branch: { apiKey: 'MY-API-KEY' } } } } as any)
28 { android: { config: { branch: { apiKey: 'MY-API-KEY' } } } } as any,
38 { android: { config: { branch: { apiKey: null } } } } as any,
H A DwithBranchIOS-test.ts9 expect(getBranchApiKey({ ios: { config: { branch: { apiKey: '123' } } } })).toBe('123');
15 expect(setBranchApiKey({ ios: { config: { branch: { apiKey: '123' } } } }, {})).toMatchObject({
/expo/packages/expo-dev-launcher/bundle/functions/
H A DgetRecentRuntime.ts4 const recentBranchWithUpdates = branches.find((branch) => branch.updates.length > 0);
/expo/tools/src/
H A DEASUpdate.ts13 branch: string;
47 branch: string;
54 ['--non-interactive', '--json', '--branch', options.branch, '--message', options.message],
/expo/packages/expo-dev-launcher/bundle/screens/
H A DBranchesScreen.tsx113 function renderBranch({ index, item: branch }: { index: number; item: Branch }) {
116 const isLoading = loadingUpdateId === branch.updates[0]?.id;
120 branch={branch}
171 {branches.slice(0, 3).map((branch, index, arr) => {
176 <View key={branch.id}>
178 branch={branch}
195 …return `There is 1 branch that is not compatible with this development build. To preview it, downl…

12345678