create-expo-stack 2.0.12 → 2.0.13

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.
@@ -0,0 +1,20 @@
1
+ node_modules/
2
+ .expo/
3
+ dist/
4
+ npm-debug.*
5
+ *.jks
6
+ *.p8
7
+ *.p12
8
+ *.key
9
+ *.mobileprovision
10
+ *.orig.*
11
+ web-build/
12
+ <% if (props.navigationPackage?.name === "expo-router") { %>
13
+ expo-env.d.ts
14
+ <% } %>
15
+
16
+ # macOS
17
+ .DS_Store
18
+
19
+ # Temporary files created by Metro to check the health of the file watcher
20
+ .metro-health-check*
@@ -0,0 +1,7 @@
1
+ {
2
+ "printWidth": 100,
3
+ "tabWidth": 2,
4
+ "singleQuote": true,
5
+ "bracketSameLine": true,
6
+ "trailingComma": "es5"
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-expo-stack",
3
- "version": "2.0.12",
3
+ "version": "2.0.13",
4
4
  "description": "create-expo-stack CLI",
5
5
  "private": false,
6
6
  "types": "build/types/types.d.ts",
@@ -14,7 +14,7 @@
14
14
  "scripts": {
15
15
  "clean-build": "rm -rf ./build",
16
16
  "compile": "tsc -p .",
17
- "copy-templates": "copyfiles -u 2 \"./src/templates/**/*\" ./build/templates",
17
+ "copy-templates": "copyfiles -u 2 -a \"./src/templates/**/*\" ./build/templates",
18
18
  "build": "yarn clean-build && yarn compile && yarn copy-templates && yarn lint-templates",
19
19
  "prepublishOnly": "yarn build",
20
20
  "format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",