create-react-native-airborne 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.mjs +2 -1
- package/template/client/gitignore +43 -0
- package/template/gitignore +27 -0
- package/template/package.json +1 -1
- package/template/server/gitignore +2 -0
package/package.json
CHANGED
package/src/index.mjs
CHANGED
|
@@ -34,7 +34,8 @@ async function copyDirectory(src, dest) {
|
|
|
34
34
|
|
|
35
35
|
for (const entry of entries) {
|
|
36
36
|
const srcPath = path.join(src, entry.name);
|
|
37
|
-
const
|
|
37
|
+
const destName = entry.name === "gitignore" ? ".gitignore" : entry.name;
|
|
38
|
+
const destPath = path.join(dest, destName);
|
|
38
39
|
|
|
39
40
|
if (entry.isDirectory()) {
|
|
40
41
|
await copyDirectory(srcPath, destPath);
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
|
|
2
|
+
|
|
3
|
+
# dependencies
|
|
4
|
+
node_modules/
|
|
5
|
+
|
|
6
|
+
# Expo
|
|
7
|
+
.expo/
|
|
8
|
+
dist/
|
|
9
|
+
web-build/
|
|
10
|
+
expo-env.d.ts
|
|
11
|
+
|
|
12
|
+
# Native
|
|
13
|
+
.kotlin/
|
|
14
|
+
*.orig.*
|
|
15
|
+
*.jks
|
|
16
|
+
*.p8
|
|
17
|
+
*.p12
|
|
18
|
+
*.key
|
|
19
|
+
*.mobileprovision
|
|
20
|
+
|
|
21
|
+
# Metro
|
|
22
|
+
.metro-health-check*
|
|
23
|
+
|
|
24
|
+
# debug
|
|
25
|
+
npm-debug.*
|
|
26
|
+
yarn-debug.*
|
|
27
|
+
yarn-error.*
|
|
28
|
+
|
|
29
|
+
# macOS
|
|
30
|
+
.DS_Store
|
|
31
|
+
*.pem
|
|
32
|
+
|
|
33
|
+
# local env files
|
|
34
|
+
.env*.local
|
|
35
|
+
|
|
36
|
+
# typescript
|
|
37
|
+
*.tsbuildinfo
|
|
38
|
+
|
|
39
|
+
app-example
|
|
40
|
+
|
|
41
|
+
# generated native folders
|
|
42
|
+
/ios
|
|
43
|
+
/android
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# dependencies
|
|
2
|
+
node_modules/
|
|
3
|
+
|
|
4
|
+
# logs
|
|
5
|
+
*.log
|
|
6
|
+
|
|
7
|
+
# expo
|
|
8
|
+
.expo/
|
|
9
|
+
.expo-shared/
|
|
10
|
+
client/.expo/
|
|
11
|
+
|
|
12
|
+
# native folders (generated locally via prebuild)
|
|
13
|
+
client/ios/
|
|
14
|
+
client/android/
|
|
15
|
+
|
|
16
|
+
# test/build artifacts
|
|
17
|
+
coverage/
|
|
18
|
+
*.tsbuildinfo
|
|
19
|
+
|
|
20
|
+
# env files
|
|
21
|
+
.env
|
|
22
|
+
.env.*
|
|
23
|
+
!.env.example
|
|
24
|
+
|
|
25
|
+
# macOS
|
|
26
|
+
.DS_Store
|
|
27
|
+
.npmrc
|
package/template/package.json
CHANGED