imp: Add titlePlaceholder in template.config.js (#26218)

Summary:
In the latest `react-native-cli` we've added more flexibility for setting application title. New config key was introduced - `titlePlaceholder` - which will be changed during init process.

PR: https://github.com/react-native-community/cli/pull/650

## Changelog

[General] [Added] - Introduce `titlePlaceholder` for template configuration.
Pull Request resolved: https://github.com/facebook/react-native/pull/26218

Test Plan: Initialization works with the default template

Differential Revision: D17091492

Pulled By: shergin

fbshipit-source-id: 239110f2ad6f817d750575fa366ab49d146b36c1
This commit is contained in:
Kacper Wiszczuk 2020-05-12 09:06:56 -07:00 коммит произвёл Facebook GitHub Bot
Родитель b4785e5144
Коммит 8ffa180d80
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -7,5 +7,6 @@
module.exports = { module.exports = {
placeholderName: 'HelloWorld', placeholderName: 'HelloWorld',
titlePlaceholder: 'Hello App Display Name',
templateDir: './template', templateDir: './template',
}; };