forked from Mindinventory/react-native-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
59 lines (48 loc) · 1.76 KB
/
script.js
File metadata and controls
59 lines (48 loc) · 1.76 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env node
console.log("Welcome to Mindinventory React native boilerplate")
const { execSync } = require("child_process")
const installDependencies = () => {
console.log("\n\n")
console.log(
"@mindinventory/react-native-boilerplate initialized with success! 🚀\n"
)
console.log("Installing dependencies... 🛠️\n")
execSync(`yarn`, { stdio: "inherit" })
console.log("Dependencies installed successfully. 🚀\n")
console.log("bundle Installing 🛠️\n")
execSync(`bundle`, { stdio: "inherit" })
console.log("bundle installed successfully.🚀\n")
console.log("pod-install Installing 🛠️\n")
execSync(`npx pod-install`, { stdio: "inherit" })
console.log("pod-install installed successfully.🚀\n")
}
const renameNpmignoreToGitignore = () => {
execSync("mv .npmignore .gitignore", { stdio: "inherit" })
}
const main = () => {
execSync("git init", { stdio: "inherit" })
installDependencies()
renameNpmignoreToGitignore()
}
new Promise((resolve) => {
main()
resolve()
})
.then(() => {
console.log(
"- 🎉 Congrats! Your project is ready with @mindinventory/react-native-boilerplate! 🎉\n"
)
console.log(
"- 📚 If you need to read more about this boilerplate : https://github.com/Mindinventory/react-native-boilerplate/blob/master/README.md\n"
)
console.log(
"- 🤕 If you have some troubles : https://github.com/Mindinventory/react-native-boilerplate/issues\n"
)
console.log(
"- ⭐ If you love this boilerplate, give us a star, you will be a ray of sunshine in our lives :) https://github.com/Mindinventory/react-native-boilerplate\n"
)
})
.catch((error) => {
console.error(`🚨 An error occurred with post init script: ${error}`)
throw new Error()
})