-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.config.js
More file actions
15 lines (12 loc) · 978 Bytes
/
template.config.js
File metadata and controls
15 lines (12 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = {
// Placeholder name that will be replaced in package.json, index.json, android/, ios/ for a project name.
placeholderName: 'Boilerplate',
// Placeholder title that will be replaced in values.xml and Info.plist with title provided by the user.
// We default this value to 'Hello App Display Name', which is default placeholder in react-native template.
titlePlaceholder: 'Düğün.com React Native Boilerplate',
// Directory with the template which will be copied and processed by React Native CLI. Template directory should have package.json with all dependencies specified, including `react-native`.
templateDir: './',
// Path to script, which will be executed after initialization process, but before installing all the dependencies specified in the template.
// This script runs as a shell script but you can change that (e.g. to Node) by using a shebang (see example custom template).
// postInitScript: "./post-init.script.js",
};