create-react-native-airborne 0.0.1 → 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 CHANGED
@@ -1,7 +1,15 @@
1
1
  {
2
2
  "name": "create-react-native-airborne",
3
- "version": "0.0.1",
3
+ "version": "0.1.1",
4
4
  "description": "Scaffold a react-native-airborne starter project",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/niteshbalusu11/react-native-airborne"
8
+ },
9
+ "homepage": "https://github.com/niteshbalusu11/react-native-airborne",
10
+ "bugs": {
11
+ "url": "https://github.com/niteshbalusu11/react-native-airborne/issues"
12
+ },
5
13
  "type": "module",
6
14
  "bin": {
7
15
  "create-react-native-airborne": "./src/index.mjs"
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 destPath = path.join(dest, entry.name);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "__APP_NAME__",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "private": true,
5
5
  "packageManager": "bun@1.3.4",
6
6
  "workspaces": [
@@ -0,0 +1,2 @@
1
+
2
+ .env.local