mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:33:26 +00:00
Compare commits
8 Commits
0f3ccbcabc
...
9a4b92de5e
Author | SHA1 | Date | |
---|---|---|---|
|
9a4b92de5e | ||
|
ac4e5cc6bd | ||
|
0820e5b7c7 | ||
|
1e7f3b9dc0 | ||
|
59f27b0397 | ||
|
c1e3d91d84 | ||
|
aeeb34db0f | ||
|
61076b344f |
8
.github/workflows/build-mobile-comment.yml
vendored
8
.github/workflows/build-mobile-comment.yml
vendored
@@ -24,7 +24,7 @@ jobs:
|
||||
- uses: pnpm/action-setup@v3
|
||||
name: Install pnpm
|
||||
with:
|
||||
version: 8
|
||||
version: 9
|
||||
run_install: false
|
||||
|
||||
- name: Install Node.js
|
||||
@@ -45,7 +45,7 @@ jobs:
|
||||
- name: Cache Node Modules
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: '**/node_modules'
|
||||
path: "**/node_modules"
|
||||
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
|
||||
- name: Install dependencies
|
||||
@@ -78,7 +78,7 @@ jobs:
|
||||
- uses: pnpm/action-setup@v3
|
||||
name: Install pnpm
|
||||
with:
|
||||
version: 8
|
||||
version: 9
|
||||
run_install: false
|
||||
|
||||
- name: Install Node.js
|
||||
@@ -90,7 +90,7 @@ jobs:
|
||||
- name: Cache Node Modules
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: '**/node_modules'
|
||||
path: "**/node_modules"
|
||||
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
|
||||
- name: Install dependencies
|
||||
|
8
.github/workflows/build-mobile.yml
vendored
8
.github/workflows/build-mobile.yml
vendored
@@ -20,7 +20,7 @@ jobs:
|
||||
- uses: pnpm/action-setup@v3
|
||||
name: Install pnpm
|
||||
with:
|
||||
version: 8
|
||||
version: 9
|
||||
run_install: false
|
||||
|
||||
- name: Install Node.js
|
||||
@@ -41,7 +41,7 @@ jobs:
|
||||
- name: Cache Node Modules
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: '**/node_modules'
|
||||
path: "**/node_modules"
|
||||
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
|
||||
- name: Install dependencies
|
||||
@@ -69,7 +69,7 @@ jobs:
|
||||
- uses: pnpm/action-setup@v3
|
||||
name: Install pnpm
|
||||
with:
|
||||
version: 8
|
||||
version: 9
|
||||
run_install: false
|
||||
|
||||
- name: Install Node.js
|
||||
@@ -81,7 +81,7 @@ jobs:
|
||||
- name: Cache Node Modules
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: '**/node_modules'
|
||||
path: "**/node_modules"
|
||||
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
|
||||
- name: Install dependencies
|
||||
|
8
.github/workflows/release-mobile.yml
vendored
8
.github/workflows/release-mobile.yml
vendored
@@ -42,7 +42,7 @@ jobs:
|
||||
- uses: pnpm/action-setup@v3
|
||||
name: Install pnpm
|
||||
with:
|
||||
version: 8
|
||||
version: 9
|
||||
run_install: false
|
||||
|
||||
- name: Install Node.js
|
||||
@@ -63,7 +63,7 @@ jobs:
|
||||
- name: Cache Node Modules
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: '**/node_modules'
|
||||
path: "**/node_modules"
|
||||
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
|
||||
- name: Install dependencies
|
||||
@@ -95,7 +95,7 @@ jobs:
|
||||
- uses: pnpm/action-setup@v3
|
||||
name: Install pnpm
|
||||
with:
|
||||
version: 8
|
||||
version: 9
|
||||
run_install: false
|
||||
|
||||
- name: Install Node.js
|
||||
@@ -107,7 +107,7 @@ jobs:
|
||||
- name: Cache Node Modules
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: '**/node_modules'
|
||||
path: "**/node_modules"
|
||||
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
|
||||
- name: Install dependencies
|
||||
|
@@ -87,6 +87,15 @@ const defineConfig = (): ExpoConfig => ({
|
||||
isAccessMediaLocationEnabled: true,
|
||||
},
|
||||
],
|
||||
[
|
||||
"expo-pod-pinner",
|
||||
{
|
||||
"targetName": "movieweb",
|
||||
"pods": [
|
||||
{ "OpenSSL-Universal": "1.1.2200" }
|
||||
]
|
||||
}
|
||||
]
|
||||
],
|
||||
});
|
||||
|
||||
|
@@ -50,6 +50,7 @@
|
||||
"expo-media-library": "~15.9.1",
|
||||
"expo-navigation-bar": "^2.8.1",
|
||||
"expo-network": "~5.8.0",
|
||||
"expo-pod-pinner": "^1.0.1",
|
||||
"expo-router": "~3.4.8",
|
||||
"expo-screen-orientation": "~6.4.1",
|
||||
"expo-splash-screen": "~0.26.4",
|
||||
|
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"extends": ["@movie-web/tsconfig/base.json"],
|
||||
"compilerOptions": {
|
||||
"incremental": true,
|
||||
"allowJs": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
|
@@ -4,7 +4,7 @@
|
||||
"engines": {
|
||||
"node": ">=20.11.0"
|
||||
},
|
||||
"packageManager": "pnpm@8.15.0",
|
||||
"packageManager": "pnpm@9.0.4",
|
||||
"scripts": {
|
||||
"build": "turbo build",
|
||||
"clean": "git clean -xdf node_modules",
|
||||
|
7
pnpm-lock.yaml
generated
7
pnpm-lock.yaml
generated
@@ -122,6 +122,9 @@ importers:
|
||||
expo-network:
|
||||
specifier: ~5.8.0
|
||||
version: 5.8.0(expo@50.0.14)
|
||||
expo-pod-pinner:
|
||||
specifier: ^1.0.1
|
||||
version: 1.0.1
|
||||
expo-router:
|
||||
specifier: ~3.4.8
|
||||
version: 3.4.8(expo-constants@15.4.5)(expo-linking@6.2.2)(expo-modules-autolinking@1.10.3)(expo-status-bar@1.11.1)(expo@50.0.14)(react-dom@18.2.0)(react-native-reanimated@3.6.2)(react-native-safe-area-context@4.8.2)(react-native-screens@3.29.0)(react-native@0.73.6)(react@18.2.0)
|
||||
@@ -7981,6 +7984,10 @@ packages:
|
||||
expo: 50.0.14(@babel/core@7.23.9)(@react-native/babel-preset@0.73.21)
|
||||
dev: false
|
||||
|
||||
/expo-pod-pinner@1.0.1:
|
||||
resolution: {integrity: sha512-UeyCRXrI13tjb+rtQkjBjgs+eS1KntAgTRnLoawFdMp8s1T2bOcm9P4cIrFlLHt9aZBLLMdHra1TY6LiMI3+kw==}
|
||||
dev: false
|
||||
|
||||
/expo-router@3.4.8(expo-constants@15.4.5)(expo-linking@6.2.2)(expo-modules-autolinking@1.10.3)(expo-status-bar@1.11.1)(expo@50.0.14)(react-dom@18.2.0)(react-native-reanimated@3.6.2)(react-native-safe-area-context@4.8.2)(react-native-screens@3.29.0)(react-native@0.73.6)(react@18.2.0):
|
||||
resolution: {integrity: sha512-fOOAWHH4LSPjPFtIZbApxdTNU8xSS8qKvhZ7PfWNMfx9510J1R1Ce/nwENPzcRLHRuVofDsSAEBfi4kV03fJwg==}
|
||||
peerDependencies:
|
||||
|
@@ -4,10 +4,14 @@ description: "Common setup steps for Actions"
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- uses: pnpm/action-setup@v2
|
||||
- uses: pnpm/action-setup@v3
|
||||
name: Install pnpm
|
||||
with:
|
||||
version: 9
|
||||
run_install: false
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 18
|
||||
node-version: 21
|
||||
cache: "pnpm"
|
||||
|
||||
- shell: bash
|
||||
|
Reference in New Issue
Block a user