create-expo-stack 2.9.4 → 2.9.5-next.c548fdc

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/README.md CHANGED
@@ -53,7 +53,7 @@ Each project is generated based on the results of the CLI, on a per-file basis.
53
53
  | React | UI Framework | v18 | The most popular UI framework in the world |
54
54
  | TypeScript | Language | v5 | Static typechecking |
55
55
  | React Navigation | Navigation | v6 | Performant and consistent navigation framework |
56
- | Expo | SDK | v50 | Allows (optional) Expo modules |
56
+ | Expo | SDK | v51 | Allows (optional) Expo modules |
57
57
  | Expo Font | Custom Fonts | v11 | Import custom fonts |
58
58
  | Expo Linking | URL Handling | v5 | Open your app via a URL |
59
59
  | Expo Router | Navigation | v3 | File-based routing in React-Native |
@@ -50,6 +50,6 @@ function setNavigationBar(colorScheme: 'light' | 'dark') {
50
50
  return Promise.all([
51
51
  NavigationBar.setButtonStyleAsync(colorScheme === 'dark' ? 'light' : 'dark'),
52
52
  NavigationBar.setPositionAsync('absolute'),
53
- NavigationBar.setBackgroundColorAsync(colorScheme === 'dark' ? '#00000080' : '#ffffff80'),
53
+ NavigationBar.setBackgroundColorAsync(colorScheme === 'dark' ? '#00000030' : '#ffffff80'),
54
54
  ]);
55
55
  }
package/package.json CHANGED
@@ -1,69 +1,69 @@
1
1
  {
2
- "name": "create-expo-stack",
3
- "version": "2.9.4",
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
- "@clack/prompts": "^0.7.0",
50
- "ejs-lint": "^2.0.0",
51
- "figlet": "^1.6.0",
52
- "gluegun": "latest",
53
- "gradient-string": "^2.0.2"
54
- },
55
- "devDependencies": {
56
- "@types/gradient-string": "^1.1.2",
57
- "@typescript-eslint/eslint-plugin": "^6.9.1",
58
- "@typescript-eslint/parser": "^6.9.1",
59
- "copyfiles": "^2.4.1",
60
- "eslint": "^8.53.0",
61
- "eslint-config-prettier": "^9.0.0",
62
- "eslint-plugin-prettier": "^5.0.1",
63
- "husky": "^5.1.3",
64
- "prettier": "^3.1.0"
65
- },
66
- "publishConfig": {
67
- "provenance": false
68
- }
2
+ "name": "create-expo-stack",
3
+ "version": "2.9.5-next.c548fdc",
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
+ "@clack/prompts": "^0.7.0",
50
+ "ejs-lint": "^2.0.0",
51
+ "figlet": "^1.6.0",
52
+ "gluegun": "latest",
53
+ "gradient-string": "^2.0.2"
54
+ },
55
+ "devDependencies": {
56
+ "@types/gradient-string": "^1.1.2",
57
+ "@typescript-eslint/eslint-plugin": "^6.9.1",
58
+ "@typescript-eslint/parser": "^6.9.1",
59
+ "copyfiles": "^2.4.1",
60
+ "eslint": "^8.53.0",
61
+ "eslint-config-prettier": "^9.0.0",
62
+ "eslint-plugin-prettier": "^5.0.1",
63
+ "husky": "^5.1.3",
64
+ "prettier": "^3.1.0"
65
+ },
66
+ "publishConfig": {
67
+ "provenance": false
68
+ }
69
69
  }