Home
last modified time | relevance | path

Searched refs:branches (Results 1 – 25 of 56) sorted by relevance

123

/expo/packages/@expo/cli/src/utils/
H A Dobj.ts3 const branches = key.split('.'); constant
6 while ((branch = branches.shift())) {
17 const branches = key.split('.'); constant
20 while ((branch = branches.shift())) {
21 if (branches.length === 0) {
/expo/packages/expo-dev-launcher/bundle/queries/
H A DuseBranchesForApp.tsx77 const branches: Branch[] = [];
98 branches.push(branch);
103 // side-effect: prime the cache with branches
111 branches,
118 branches: [],
131 ['branches', appId, queryOptions.pageSize],
177 const branches =
179 .flatMap((page) => page.branches)
182 …// incompatible branches are branches that have no compatible updates with the current runtimeVers…
192 data: branches,
[all …]
H A DuseChannelsForApp.tsx26 branches: string[]; // branchNames
40 branches: updateChannel.updateBranches.map((branch) => branch.name),
/expo/packages/expo-dev-launcher/bundle/screens/
H A DBranchesScreen.tsx25 data: branches,
39 if (branches.length > 0) {
57 {branches.length > 0 && hasNextPage && (
70 {branches.length === 0 && hasNextPage && (
105 <EmptyBranchesMessage branches={branches} incompatibleBranches={incompatibleBranches} />
115 const isLast = index === branches?.length - 1;
139 data={branches}
152 branches: Branch[];
157 if (branches.length === 0) {
167 Recently created branches
[all …]
H A DExtensionsScreen.tsx41 data: branches,
134 branches={branches}
219 branches: Branch[];
227 branches,
240 if (branches.length === 0 && emptyBranches.length > 0) {
284 // no compatiable branches
285 if (branches.length === 0) {
294 <EmptyBranchesMessage branches={branches} incompatibleBranches={incompatibleBranches} />
299 // some compatible branches, possible some empty branches
307 {branches?.slice(0, 2).map((branch, index, arr) => {
[all …]
/expo/packages/expo-dev-launcher/bundle/functions/
H A DgetRecentRuntime.ts3 export function getRecentRuntime(branches: Branch[]) {
4 const recentBranchWithUpdates = branches.find((branch) => branch.updates.length > 0);
/expo/packages/@expo/config-plugins/src/utils/
H A Dobj.ts3 const branches = key.split('.'); constant
6 while ((branch = branches.shift())) {
/expo/packages/@expo/config-plugins/build/utils/
H A Dobj.js9 const branches = key.split('.'); constant
12 while (branch = branches.shift()) {
H A Dobj.js.map1branches","split","current","branch","shift","undefined"],"sources":["../../src/utils/obj.ts"],"so…
/expo/packages/expo-dev-launcher/bundle/components/
H A DEmptyBranchesMessage.tsx13 branches: Branch[];
18 branches = [],
25 // no compatible branches
26 if (branches.length === 0 && incompatibleBranches.length > 0) {
32 <Heading>There are no branches compatible with this development build.</Heading>
105 …return `However, there are ${numberOfCompatibleBranches} branches that are compatible with a diffe…
/expo/.github/workflows/
H A Dshell-app-android.yml2 # in order to be run on other branches using workflow_dispatch.
6 # to trigger the workflow on other (usually sdk-xx) branches
H A Dshell-app-ios.yml2 # in order to be run on other branches using workflow_dispatch.
6 # to trigger the workflow on other (usually sdk-xx) branches
H A Dtest-suite-lint.yml6 branches: [main]
H A Dexpotools.yml6 branches: [main, 'sdk-*']
H A Dexpo-updates-cli.yml5 branches: [main]
H A Dcreate-expo-app.yml5 branches: [main, 'sdk-*']
H A Dhome.yml11 branches: [main, 'sdk-*']
H A Dnative-component-list.yml13 branches: [main]
/expo/packages/expo-dev-launcher/bundle/screens/__tests__/
H A DExtensionsScreen.test.tsx144 test('eas updates see all branches press', async () => {
181 await waitFor(() => getByText(/see all branches/i));
183 fireEvent.press(getByText(/all branches/i));
190 test('eas updates no compatible branches state', async () => {
216 test('eas updates no branches state', async () => {
H A DBranchesScreen.test.tsx155 test('empty branches state', async () => {
176 test('no compatible branches state', async () => {
211 test.todo('recent empty branches are visible in the footer');
/expo/guides/
H A DGit and Code Reviews.md5 - [Develop on feature branches](#develop-on-feature-branches)
22 …including the Expo platform repository. We generally develop on feature branches and then rebase t…
28 ## Develop on feature branches
30 We often work on new features on their own branches. This is the first step towards sending your co…
32 Name your branches something memorable for yourself. It’s common to accrue old branches and is help…
40 …n a per-branch basis. Tell it to use rebasing for your existing branches and all new branches with:
43 # Set rebase=true for your existing branches
47 # Set rebase=true for new branches in the future
55 Rebasing your feature branches often (`git rebase main`) also increases the likelihood your code wo…
61 …ounter after pulling and rebasing on top of your changes. Keep your feature branches close to main.
/expo/docs/pages/eas-update/
H A Ddeployment-patterns.mdx25 - (b) We can create update branches that are environment-based, like "production" and "staging".
26 …- (c) We can create update branches that are version-based, like "version-1.0", which enables us t…
69 …We do not track release versions with branches. Instead, we'll have persistent "staging" and "prod…
75 **Publishing updates:** (b) Create update branches that are environment-based, like "staging" and "…
89 3. Set up `expo-github-action` to publish updates when merging commits to branches.
96 …e to your team, since deploying updates occurs when merging into GitHub branches named "staging" a…
111 **Publishing updates:** (b) Create update branches that are environment- and platform-based, like "…
125 …`expo-github-action` to publish updates to the required platforms when merging commits to branches.
162 3. Set up `expo-github-action` to publish updates when merging commits to branches.
184branches and EAS Update branches. It also creates a mapping between GitHub commits and EAS Update …
[all …]
H A Dhow-it-works.mdx44 We can think of EAS branches just like Git branches. Just as Git branches contain a list of commits…
60 To simplify this linking, by default we auto-link channels to branches of the same name. For instan…
67 …rks great if you have a deployment process where you have multiple consistent Git and EAS branches.
73 …have the ability to change the link between channels and branches. Imagine we name our branches li…
H A Deas-cli.mdx46 ### Inspect branches
48 See all branches:
100 Renaming branches do not disconnect any channel–branch links. If you had a channel named "productio…
/expo/home/components/
H A DBranchListItem.tsx25 …* This component is used to render a list item for the branches section on the project screen and …
26 * the branches list page for an app.

123