create-expo-stack 2.4.0 → 2.4.1-next.9242c21

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.
@@ -21,6 +21,7 @@ const Page = () => {
21
21
  <View style={theme.components.container}>
22
22
  <Text style={theme.components.title}>Home</Text>
23
23
  <View style={theme.components.separator} />
24
+ <EditScreenInfo path="app/(tabs)/index.tsx" />
24
25
  </View>
25
26
  );
26
27
  <% } else if (props.stylingPackage?.name === "nativewind") { %>
@@ -37,6 +38,7 @@ const Page = () => {
37
38
  <YStack flex={1} alignItems="center" justifyContent="center">
38
39
  <H2>Home</H2>
39
40
  <Separator />
41
+ <EditScreenInfo path="app/(tabs)/index.tsx" />
40
42
  </YStack>
41
43
  </Theme>
42
44
  );
@@ -45,6 +47,7 @@ const Page = () => {
45
47
  <Box flex={1} alignItems="center" justifyContent="center">
46
48
  <Text variant="title">Home</Text>
47
49
  <Box height={1} marginVertical="l_32" width="80%" />
50
+ <EditScreenInfo path="app/(tabs)/index.tsx" />
48
51
  </Box>
49
52
  );
50
53
  <% } else { %>
@@ -52,6 +55,7 @@ const Page = () => {
52
55
  <View style={styles.container}>
53
56
  <Text style={styles.title}>Home</Text>
54
57
  <View style={styles.separator} />
58
+ <EditScreenInfo path="app/(tabs)/index.tsx" />
55
59
  </View>
56
60
  );
57
61
  <% } %>
package/package.json CHANGED
@@ -1,68 +1,68 @@
1
1
  {
2
- "name": "create-expo-stack",
3
- "version": "2.4.0",
4
- "description": "CLI tool to initialize a React Native application with Expo",
5
- "repository": {
6
- "type": "git",
7
- "url": "https://github.com/danstepanov/create-expo-stack.git",
8
- "directory": "cli"
9
- },
10
- "homepage": "https://createexpostack.com",
11
- "license": "MIT",
12
- "types": "build/types/types.d.ts",
13
- "bin": {
14
- "create-expo-stack": "bin/create-expo-stack.js"
15
- },
16
- "files": [
17
- "build",
18
- "LICENSE",
19
- "readme.md",
20
- "docs",
21
- "bin"
22
- ],
23
- "scripts": {
24
- "build": "bun run clean-build && bun run compile && bun run copy-templates && bun run lint-templates",
25
- "bump": "bun run ./src/utilities/bumpVersion.ts",
26
- "clean-build": "rm -rf ./build",
27
- "compile": "tsc -p .",
28
- "copy-templates": "bun run copyfiles -u 2 -a \"./src/templates/**/*\" ./build/templates",
29
- "format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix --resolve-plugins-relative-to . && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
30
- "lint-templates": "bun run ejslint ./src/templates",
31
- "prepublishOnly": "bun run build",
32
- "publishPublic": "bun run build && npm publish --access public",
33
- "snapupdate": "jest --updateSnapshot",
34
- "test:watch": "bun test --watch",
35
- "test": "bun test --timeout 30000"
36
- },
37
- "prettier": {
38
- "arrowParens": "always",
39
- "bracketSameLine": false,
40
- "bracketSpacing": true,
41
- "printWidth": 120,
42
- "semi": true,
43
- "singleQuote": true,
44
- "tabWidth": 2,
45
- "trailingComma": "none",
46
- "useTabs": false
47
- },
48
- "dependencies": {
49
- "ejs-lint": "^2.0.0",
50
- "figlet": "^1.6.0",
51
- "gluegun": "latest",
52
- "gradient-string": "^2.0.2"
53
- },
54
- "devDependencies": {
55
- "@types/gradient-string": "^1.1.2",
56
- "@typescript-eslint/eslint-plugin": "^6.9.1",
57
- "@typescript-eslint/parser": "^6.9.1",
58
- "copyfiles": "^2.4.1",
59
- "eslint": "^8.53.0",
60
- "eslint-config-prettier": "^9.0.0",
61
- "eslint-plugin-prettier": "^5.0.1",
62
- "husky": "^5.1.3",
63
- "prettier": "^3.1.0"
64
- },
65
- "publishConfig": {
66
- "provenance": false
67
- }
2
+ "name": "create-expo-stack",
3
+ "version": "2.4.1-next.9242c21",
4
+ "description": "CLI tool to initialize a React Native application with Expo",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/danstepanov/create-expo-stack.git",
8
+ "directory": "cli"
9
+ },
10
+ "homepage": "https://createexpostack.com",
11
+ "license": "MIT",
12
+ "types": "build/types/types.d.ts",
13
+ "bin": {
14
+ "create-expo-stack": "bin/create-expo-stack.js"
15
+ },
16
+ "files": [
17
+ "build",
18
+ "LICENSE",
19
+ "readme.md",
20
+ "docs",
21
+ "bin"
22
+ ],
23
+ "scripts": {
24
+ "build": "bun run clean-build && bun run compile && bun run copy-templates && bun run lint-templates",
25
+ "bump": "bun run ./src/utilities/bumpVersion.ts",
26
+ "clean-build": "rm -rf ./build",
27
+ "compile": "tsc -p .",
28
+ "copy-templates": "bun run copyfiles -u 2 -a \"./src/templates/**/*\" ./build/templates",
29
+ "format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix --resolve-plugins-relative-to . && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
30
+ "lint-templates": "bun run ejslint ./src/templates",
31
+ "prepublishOnly": "bun run build",
32
+ "publishPublic": "bun run build && npm publish --access public",
33
+ "snapupdate": "jest --updateSnapshot",
34
+ "test:watch": "bun test --watch",
35
+ "test": "bun test --timeout 30000"
36
+ },
37
+ "prettier": {
38
+ "arrowParens": "always",
39
+ "bracketSameLine": false,
40
+ "bracketSpacing": true,
41
+ "printWidth": 120,
42
+ "semi": true,
43
+ "singleQuote": true,
44
+ "tabWidth": 2,
45
+ "trailingComma": "none",
46
+ "useTabs": false
47
+ },
48
+ "dependencies": {
49
+ "ejs-lint": "^2.0.0",
50
+ "figlet": "^1.6.0",
51
+ "gluegun": "latest",
52
+ "gradient-string": "^2.0.2"
53
+ },
54
+ "devDependencies": {
55
+ "@types/gradient-string": "^1.1.2",
56
+ "@typescript-eslint/eslint-plugin": "^6.9.1",
57
+ "@typescript-eslint/parser": "^6.9.1",
58
+ "copyfiles": "^2.4.1",
59
+ "eslint": "^8.53.0",
60
+ "eslint-config-prettier": "^9.0.0",
61
+ "eslint-plugin-prettier": "^5.0.1",
62
+ "husky": "^5.1.3",
63
+ "prettier": "^3.1.0"
64
+ },
65
+ "publishConfig": {
66
+ "provenance": false
67
+ }
68
68
  }