Searched refs:newVersion (Results 1 – 11 of 11) sorted by relevance
| /expo/tools/src/android-update-native-dependencies/ |
| H A D | updateGradleFiles.ts | 15 newVersion, 21 newVersion: string; 46 modifiedBody = modifiedBody.replace(match, match.replace(oldVersion, newVersion)); 56 modifiedBody = modifiedBody.replace(match, match.replace(oldVersion, newVersion)); 66 modifiedBody = modifiedBody.replace(match, `${fullName}:${newVersion}`); 78 modifiedBody = modifiedBody.replace(match, match.replace(oldVersion, newVersion)); 89 modifiedBody = modifiedBody.replace(match, match.replace(oldVersion, newVersion)); 146 singleUpdate.newVersion, 147 calculateSemverDiff(singleUpdate.oldVersion, singleUpdate.newVersion)
|
| H A D | updateChangelogFiles.ts | 23 `\`${update.fullName}:${update.oldVersion}\` ➡️ \`${update.newVersion}\``,
|
| H A D | types.ts | 79 newVersion: string; property
|
| H A D | prompts.ts | 77 newVersion: stripAnsi(version),
|
| /expo/tools/src/publish-packages/tasks/ |
| H A D | updateModuleTemplate.ts | 58 const newVersion = state.releaseVersion; constant 61 if (!newVersion || !oldVersion || oldVersion === newVersion) { 65 const newVersionRange = '^' + newVersion;
|
| /expo/docs/providers/ |
| H A D | page-api-version.tsx | 13 setVersion: newVersion => { 21 setVersion: (newVersion: string) => void; 32 const setVersion = useCallback((newVersion: string) => { 33 router?.push(replaceVersionInPath(router.pathname, newVersion)); 62 export function replaceVersionInPath(path: string, newVersion: string) { 64 return version ? path.replace(version, newVersion) : path;
|
| /expo/tools/src/commands/ |
| H A D | PublishProjectTemplates.ts | 124 const { newVersion } = await inquirer.prompt<{ newVersion: string }>([ constant 144 const choseNextTag = semver.prerelease(newVersion) ? await promptToUseNextTag() : false; 147 await JsonFile.setAsync(path.join(template.path, 'package.json'), 'version', newVersion); 169 `Queuing command to publish ${chalk.green(template.name)}@${chalk.red(newVersion)}...` 189 )}@${chalk.red(newVersion)}...` 195 `${template.name}@${newVersion}`,
|
| /expo/android/vendored/unversioned/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/ |
| H A D | ReactDatabaseSupplier.java | 77 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { in onUpgrade() argument 78 if (oldVersion != newVersion) { in onUpgrade()
|
| /expo/android/vendored/sdk49/@react-native-async-storage/async-storage/android/src/main/java/abi49_0_0/com/reactnativecommunity/asyncstorage/ |
| H A D | ReactDatabaseSupplier.java | 77 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { in onUpgrade() argument 78 if (oldVersion != newVersion) { in onUpgrade()
|
| /expo/android/vendored/sdk48/@react-native-async-storage/async-storage/android/src/main/java/abi48_0_0/com/reactnativecommunity/asyncstorage/ |
| H A D | ReactDatabaseSupplier.java | 77 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { in onUpgrade() argument 78 if (oldVersion != newVersion) { in onUpgrade()
|
| /expo/tools/src/ |
| H A D | Changelogs.ts | 434 newVersion: string, 443 const versionIndex = tokens.findIndex((token) => isVersionToken(token, newVersion)); 452 Markdown.createHeadingToken(`${newVersion} - ${dateString}`, VERSION_HEADING_DEPTH), 460 await this.insertEntriesAsync(newVersion, type, null, [entry]);
|