-
Notifications
You must be signed in to change notification settings - Fork 891
/
Copy pathpost-init.script.js
executable file
·25 lines (22 loc) · 1.71 KB
/
post-init.script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env node
const fs = require('fs')
fs.copyFile('src/Config/index.example.js', 'src/Config/index.js', (err) => {
if (err) throw err;
console.log('src/Config/index.example.js was copied to src/Config/index.js');
});
console.log("TheCodingMachine React-Native Boilerplate initialized with success !");
console.log("" +
" .-` `:: \n" +
" `///////////// `/shhhy+- ://. /sy/ /ss/ :NMN: \n" +
" `sssssyhhhyhhy:` `yMMMMNNMMMd. osss: `hMMMh- .-` `+ss: +MMm/. \n" +
" :MMM+----. `mMMm+:-`.oo/` osssyo` `dMMMMh- ohhh- `oyy+- sMMd/. \n" +
" :MMM+` oMMN/- osssyhs`.mMMMMMh- -hds` .syy+- `hMMh:` \n" +
" :MMM+` hMMd: oss-ohhhMMMhdMMh- `. +NNm/. .dMMy:` \n" +
" :MMM+` oMMN/ oss-`shdMMd:dMMh- :-` sMMd/. -NMMo- \n" +
" :MMM+` `mMMm/` `/+:. oss- `sdMd:.hMMh- hMys- `hMMh:` -hdy-` \n" +
" :MMM+` `yMMMMdssss+ oss. `oh/- hMMh- -hyo: dMMs:` -ss+` \n" +
" .oys:` .+yhyo/- -::` `` -syo- ..` +mo- `// \n" +
" `` ``` `` `. ")
console.log('- If you need to read more about this boilerplate : https://thecodingmachine.github.io/react-native-boilerplate/')
console.log('- If you have some troubles : https://github.com/thecodingmachine/react-native-boilerplate/issues')
console.log('- If you love this boilerplate, give us a star, you will be a ray of sunshine in our lives :) https://github.com/thecodingmachine/react-native-boilerplate')