feat: actually link expo and nx

This commit is contained in:
castdrian
2024-01-14 21:24:49 +01:00
parent 8f673cc7f3
commit 9f37eaa006
38 changed files with 5678 additions and 1529 deletions

18
.gitignore vendored
View File

@@ -39,3 +39,21 @@ testem.log
Thumbs.db Thumbs.db
.nx/cache .nx/cache
# Expo
node_modules/
.expo/
.yarn/
dist/
npm-debug.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision
*.orig.*
web-build/
cache/
apps/mobile-e2e/artifacts

View File

@@ -3,5 +3,6 @@
"dbaeumer.vscode-eslint", "dbaeumer.vscode-eslint",
"editorconfig.editorconfig", "editorconfig.editorconfig",
"esbenp.prettier-vscode", "esbenp.prettier-vscode",
"firsttris.vscode-jest-runner"
] ]
} }

11
apps/mobile-e2e/.babelrc Normal file
View File

@@ -0,0 +1,11 @@
{
"presets": [
[
"@nx/react/babel",
{
"runtime": "automatic",
},
],
],
"plugins": [],
}

View File

@@ -0,0 +1,89 @@
{
"testRunner": {
"args": {
"$0": "jest",
"config": "./jest.config.json"
},
"jest": {
"setupTimeout": 120000
}
},
"apps": {
"ios.debug": {
"type": "ios.app",
"build": "cd ../../apps/mobile/ios && xcodebuild -workspace Mobile.xcworkspace -scheme Mobile -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14' -derivedDataPath ./build -quiet",
"binaryPath": "../../apps/mobile/ios/build/Build/Products/Debug-iphonesimulator/Mobile.app"
},
"ios.release": {
"type": "ios.app",
"build": "cd ../../apps/mobile/ios && xcodebuild -workspace Mobile.xcworkspace -scheme Mobile -configuration Release -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14' -derivedDataPath ./build -quiet",
"binaryPath": "../../apps/mobile/ios/build/Build/Products/Release-iphonesimulator/Mobile.app"
},
"ios.local": {
"type": "ios.app",
"build": "pnpm exec nx run mobile:build --platform ios --profile preview --wait --local --no-interactive --output=../../apps/mobile/dist/Mobile.tar.gz",
"binaryPath": "../../apps/mobile/dist/Mobile.app"
},
"android.debug": {
"type": "android.apk",
"build": "cd ../../apps/mobile/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug",
"binaryPath": "../../apps/mobile/android/app/build/outputs/apk/debug/app-debug.apk"
},
"android.release": {
"type": "android.apk",
"build": "cd ../../apps/mobile/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release",
"binaryPath": "../../apps/mobile/android/app/build/outputs/apk/release/app-release.apk"
},
"android.local": {
"type": "android.apk",
"build": "pnpm exec nx run mobile:build --platform android --profile preview --wait --local --no-interactive --output=../../apps/mobile/dist/Mobile.apk",
"binaryPath": "../../apps/mobile/dist/Mobile.apk"
}
},
"devices": {
"simulator": {
"type": "ios.simulator",
"device": {
"type": "iPhone 14"
}
},
"emulator": {
"type": "android.emulator",
"device": {
"avdName": "Pixel_4a_API_30"
}
}
},
"configurations": {
"ios.sim.release": {
"device": "simulator",
"app": "ios.release"
},
"ios.sim.debug": {
"device": "simulator",
"app": "ios.debug"
},
"ios.sim.local": {
"device": "simulator",
"app": "ios.local"
},
"android.emu.release": {
"device": "emulator",
"app": "android.release"
},
"android.emu.debug": {
"device": "emulator",
"app": "android.debug"
},
"android.emu.local": {
"device": "emulator",
"app": "android.local"
}
}
}

View File

@@ -0,0 +1,18 @@
{
"extends": ["../../.eslintrc.js"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {}
},
{
"files": ["*.ts", "*.tsx"],
"rules": {}
},
{
"files": ["*.js", "*.jsx"],
"rules": {}
}
]
}

View File

@@ -0,0 +1,22 @@
{
"preset": "../../jest.preset",
"rootDir": ".",
"testMatch": [
"<rootDir>/src/**/*.test.ts?(x)",
"<rootDir>/src/**/*.spec.ts?(x)"
],
"testTimeout": 120000,
"maxWorkers": 1,
"globalSetup": "detox/runners/jest/globalSetup",
"globalTeardown": "detox/runners/jest/globalTeardown",
"reporters": ["detox/runners/jest/reporter"],
"testEnvironment": "detox/runners/jest/testEnvironment",
"verbose": true,
"setupFilesAfterEnv": ["<rootDir>/test-setup.ts"],
"transform": {
"^.+\\.(ts|js|html)$": [
"ts-jest",
{ "tsconfig": "<rootDir>/tsconfig.e2e.json" }
]
}
}

View File

@@ -0,0 +1,76 @@
{
"name": "mobile-e2e",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/mobile-e2e/src",
"projectType": "application",
"targets": {
"build-ios": {
"executor": "@nx/detox:build",
"options": {
"detoxConfiguration": "ios.sim.local"
},
"configurations": {
"bare": {
"detoxConfiguration": "ios.sim.debug"
},
"production": {
"detoxConfiguration": "ios.sim.release"
}
}
},
"test-ios": {
"executor": "@nx/detox:test",
"options": {
"detoxConfiguration": "ios.sim.local",
"buildTarget": "mobile-e2e:build-ios"
},
"configurations": {
"bare": {
"detoxConfiguration": "ios.sim.debug",
"buildTarget": "mobile-e2e:build-ios:bare"
},
"production": {
"detoxConfiguration": "ios.sim.release",
"buildTarget": "mobile-e2e:build-ios:production"
}
}
},
"build-android": {
"executor": "@nx/detox:build",
"options": {
"detoxConfiguration": "android.emu.local"
},
"configurations": {
"bare": {
"detoxConfiguration": "android.emu.debug"
},
"production": {
"detoxConfiguration": "android.emu.release"
}
}
},
"test-android": {
"executor": "@nx/detox:test",
"options": {
"detoxConfiguration": "android.emu.local",
"buildTarget": "mobile-e2e:build-android"
},
"configurations": {
"bare": {
"detoxConfiguration": "android.emu.debug",
"buildTarget": "mobile-e2e:build-android:bare"
},
"production": {
"detoxConfiguration": "android.emu.release",
"buildTarget": "mobile-e2e:build-android:production"
}
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
}
},
"tags": [],
"implicitDependencies": ["mobile"]
}

View File

@@ -0,0 +1,11 @@
import { device, element, by, expect } from 'detox';
describe('Mobile', () => {
beforeEach(async () => {
await device.reloadReactNative();
});
it('should display welcome message', async () => {
await expect(element(by.id('heading'))).toHaveText('Welcome Mobile 👋');
});
});

View File

@@ -0,0 +1,5 @@
import { device } from 'detox';
beforeAll(async () => {
await device.launchApp();
});

View File

@@ -0,0 +1,10 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"sourceMap": false,
"outDir": "../../dist/out-tsc",
"allowJs": true,
"types": ["node", "jest", "detox"]
},
"include": ["src/**/*.ts", "src/**/*.js"]
}

View File

@@ -0,0 +1,10 @@
{
"extends": "../../tsconfig.base.json",
"files": [],
"include": [],
"references": [
{
"path": "./tsconfig.e2e.json"
}
]
}

View File

@@ -0,0 +1,18 @@
{
"extends": ["../../.eslintrc.js"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {}
},
{
"files": ["*.ts", "*.tsx"],
"rules": {}
},
{
"files": ["*.js", "*.jsx"],
"rules": {}
}
]
}

View File

@@ -1,54 +1,40 @@
{ {
"expo": { "expo": {
"name": "mobile", "name": "Mobile",
"slug": "mobile", "slug": "mobile",
"version": "1.0.0", "version": "1.0.0",
"orientation": "portrait", "orientation": "portrait",
"icon": "./assets/images/icon.png", "icon": "./assets/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"splash": { "splash": {
"image": "./assets/images/splash.png", "image": "./assets/splash.png",
"resizeMode": "contain", "resizeMode": "contain",
"backgroundColor": "#ffffff" "backgroundColor": "#ffffff"
}, },
"assetBundlePatterns": [ "updates": {
"**/*" "fallbackToCacheTimeout": 0
], },
"assetBundlePatterns": ["**/*"],
"ios": { "ios": {
"supportsTablet": true, "supportsTablet": true
"bundleIdentifier": "dev.movieweb.app"
}, },
"android": { "android": {
"adaptiveIcon": { "adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png", "foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff" "backgroundColor": "#FFFFFF"
}, }
"package": "dev.movieweb.app"
}, },
"web": { "web": {
"bundler": "metro", "favicon": "./assets/favicon.png",
"output": "static", "bundler": "metro"
"favicon": "./assets/images/favicon.png"
}, },
"plugins": [ "plugins": [
"expo-router",
[ [
"expo-build-properties", "@config-plugins/detox",
{ {
"android": { "skipProguard": false,
"compileSdkVersion": 31, "subdomains": ["10.0.2.2", "localhost"]
"targetSdkVersion": 31,
"buildToolsVersion": "31.0.0"
},
"ios": {
"deploymentTarget": "13.4"
}
} }
] ]
], ]
"experiments": {
"typedRoutes": true
}
} }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
apps/mobile/assets/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View File

@@ -2,9 +2,5 @@ module.exports = function (api) {
api.cache(true); api.cache(true);
return { return {
presets: ['babel-preset-expo'], presets: ['babel-preset-expo'],
plugins: [
// Required for expo-router
'expo-router/babel',
],
}; };
}; };

28
apps/mobile/eas.json Normal file
View File

@@ -0,0 +1,28 @@
{
"build": {
"production": {
"android": {
"buildType": "app-bundle"
}
},
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal",
"ios": {
"simulator": true
},
"android": {
"buildType": "apk"
}
}
},
"submit": {
"production": {}
},
"cli": {
"version": ">= 5.2.0"
}
}

8
apps/mobile/index.js Normal file
View File

@@ -0,0 +1,8 @@
import { registerRootComponent } from 'expo';
import App from './src/app/App';
// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
// It also ensures that whether you load the app in Expo Go or in a native build,
// the environment is set up appropriately
registerRootComponent(App);

View File

@@ -0,0 +1,13 @@
module.exports = {
displayName: 'mobile',
resolver: '@nx/jest/plugins/resolver',
preset: 'jest-expo',
transformIgnorePatterns: [
'node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)',
],
moduleFileExtensions: ['ts', 'js', 'html', 'tsx', 'jsx'],
setupFilesAfterEnv: ['<rootDir>/test-setup.ts'],
moduleNameMapper: {
'\\.svg$': '@nx/expo/plugins/jest/svg-mock',
},
};

View File

@@ -1,27 +1,36 @@
// Learn more https://docs.expo.io/guides/customizing-metro const { withNxMetro } = require('@nx/expo');
const { getDefaultConfig } = require('expo/metro-config'); const { getDefaultConfig } = require('@expo/metro-config');
const path = require('path'); const { mergeConfig } = require('metro-config');
const exclusionList = require('metro-config/src/defaults/exclusionList');
const projectRoot = __dirname; const defaultConfig = getDefaultConfig(__dirname);
const workspaceRoot = path.resolve(projectRoot, '../..'); const { assetExts, sourceExts } = defaultConfig.resolver;
/** @type {import('expo/metro-config').MetroConfig} */ /**
const config = getDefaultConfig(projectRoot, { * Metro configuration
// [Web-only]: Enables CSS support in Metro. * https://facebook.github.io/metro/docs/configuration
isCSSEnabled: true, *
* @type {import('metro-config').MetroConfig}
*/
const customConfig = {
transformer: {
babelTransformerPath: require.resolve('react-native-svg-transformer'),
},
resolver: {
assetExts: assetExts.filter((ext) => ext !== 'svg'),
sourceExts: [...sourceExts, 'svg'],
blockList: exclusionList([/^(?!.*node_modules).*\/dist\/.*/]),
// unstable_enableSymlinks: true,
// unstable_enablePackageExports: true,
},
};
module.exports = withNxMetro(mergeConfig(defaultConfig, customConfig), {
// Change this to true to see debugging info.
// Useful if you have issues resolving modules
debug: false,
// all the file extensions used for imports other than 'ts', 'tsx', 'js', 'jsx', 'json'
extensions: [],
// Specify folders to watch, in addition to Nx defaults (workspace libraries and node_modules)
watchFolders: [],
}); });
if (config.resolver) {
// 1. Watch all files within the monorepo
config.watchFolders = [workspaceRoot];
// 2. Let Metro know where to resolve packages and in what order
config.resolver.nodeModulesPaths = [
path.resolve(projectRoot, 'node_modules'),
path.resolve(workspaceRoot, 'node_modules'),
];
// 3. Force Metro to resolve (sub)dependencies only from the `nodeModulesPaths`
// TODO: This is supposed to be true, but I couldn't get it to work in the monorepo.
config.resolver.disableHierarchicalLookup = false;
}
module.exports = config;

View File

@@ -1,57 +1,25 @@
{ {
"name": "mobile", "name": "mobile",
"main": "expo-router/entry", "version": "0.0.1",
"version": "1.0.0", "private": true,
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest --watchAll",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write ."
},
"jest": {
"preset": "jest-expo"
},
"dependencies": { "dependencies": {
"@expo/vector-icons": "^13.0.0", "@testing-library/jest-native": "*",
"@react-navigation/native": "^6.0.2", "@testing-library/react-native": "*",
"expo": "~49.0.15", "metro-config": "*",
"expo-build-properties": "~0.8.3", "react-native": "*",
"expo-font": "~11.4.0", "expo": "*",
"expo-linking": "~5.0.2", "react-native-svg": "*",
"expo-router": "^2.0.0", "react-native-web": "*",
"expo-splash-screen": "~0.20.5", "@expo/vector-icons": "*",
"expo-status-bar": "~1.6.0", "expo-font": "*",
"expo-system-ui": "~2.4.0", "react": "*",
"expo-web-browser": "~12.3.2", "expo-status-bar": "*",
"pod-install": "^0.1.39", "@nx/expo": "*",
"react": "18.2.0", "@expo/metro-config": "*",
"react-dom": "18.2.0", "react-native-svg-transformer": "*"
"react-native": "0.73.2",
"react-native-gesture-handler": "~2.12.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-web": "~0.19.6"
}, },
"devDependencies": { "scripts": {
"@babel/core": "^7.20.0", "eas-build-pre-install": "cd ../../ && node tools/scripts/eas-build-pre-install.mjs . apps/mobile && cp pnpm-lock.yaml apps/mobile",
"@rnx-kit/metro-config": "^1.3.14", "eas-build-post-install": "cd ../../ && node tools/scripts/eas-build-post-install.mjs . apps/mobile"
"@rnx-kit/metro-resolver-symlinks": "^0.1.34", }
"@types/react": "~18.2.14",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "^29.2.1",
"jest-expo": "~49.0.0",
"react-test-renderer": "18.2.0",
"typescript": "^5.1.3"
},
"overrides": {
"react-refresh": "~0.14.0"
},
"resolutions": {
"react-refresh": "~0.14.0"
},
"private": true
} }

94
apps/mobile/project.json Normal file
View File

@@ -0,0 +1,94 @@
{
"name": "mobile",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/mobile/src",
"projectType": "application",
"targets": {
"start": {
"executor": "@nx/expo:start",
"dependsOn": ["ensure-symlink", "sync-deps"],
"options": {
"port": 8081
}
},
"serve": {
"executor": "nx:run-commands",
"options": {
"command": "nx start mobile"
}
},
"run-ios": {
"executor": "@nx/expo:run",
"dependsOn": ["ensure-symlink", "sync-deps"],
"options": {
"platform": "ios"
}
},
"run-android": {
"executor": "@nx/expo:run",
"dependsOn": ["ensure-symlink", "sync-deps"],
"options": {
"platform": "android"
}
},
"build": {
"executor": "@nx/expo:build",
"options": {}
},
"submit": {
"executor": "@nx/expo:submit",
"options": {}
},
"build-list": {
"executor": "@nx/expo:build-list",
"options": {}
},
"sync-deps": {
"executor": "@nx/expo:sync-deps",
"options": {}
},
"ensure-symlink": {
"executor": "@nx/expo:ensure-symlink",
"options": {}
},
"prebuild": {
"executor": "@nx/expo:prebuild",
"dependsOn": ["ensure-symlink", "sync-deps"],
"options": {}
},
"install": {
"executor": "@nx/expo:install",
"options": {}
},
"update": {
"executor": "@nx/expo:update",
"options": {}
},
"export": {
"executor": "@nx/expo:export",
"dependsOn": ["ensure-symlink", "sync-deps"],
"options": {
"platform": "all",
"outputDir": "../../dist/apps/mobile"
}
},
"export-web": {
"executor": "@nx/expo:export",
"options": {
"bundler": "metro"
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "apps/mobile/jest.config.ts"
}
}
},
"tags": []
}

View File

@@ -0,0 +1,9 @@
import * as React from 'react';
import { render } from '@testing-library/react-native';
import App from './App';
test('renders correctly', () => {
const { getByTestId } = render(<App />);
expect(getByTestId('heading')).toHaveTextContent('Welcome');
});

716
apps/mobile/src/app/App.tsx Normal file
View File

@@ -0,0 +1,716 @@
/* eslint-disable jsx-a11y/accessible-emoji */
import React, { useRef, useState } from 'react';
import {
SafeAreaView,
StyleSheet,
ScrollView,
View,
Text,
StatusBar,
TouchableOpacity,
Linking,
} from 'react-native';
import Svg, { G, Path } from 'react-native-svg';
export const App = () => {
const [whatsNextYCoord, setWhatsNextYCoord] = useState<number>(0);
const scrollViewRef = useRef<null | ScrollView>(null);
return (
<>
<StatusBar barStyle="dark-content" />
<SafeAreaView>
<ScrollView
ref={(ref) => {
scrollViewRef.current = ref;
}}
contentInsetAdjustmentBehavior="automatic"
style={styles.scrollView}
>
<View style={styles.section}>
<Text style={styles.textLg}>Hello there,</Text>
<Text style={[styles.textXL, styles.appTitleText]} testID="heading">
Welcome Mobile 👋
</Text>
</View>
<View style={styles.section}>
<View style={styles.hero}>
<View style={styles.heroTitle}>
<Svg
width={32}
height={32}
stroke="hsla(162, 47%, 50%, 1)"
fill="none"
viewBox="0 0 24 24"
>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M9 12l2 2 4-4M7.835 4.697a3.42 3.42 0 001.946-.806 3.42 3.42 0 014.438 0 3.42 3.42 0 001.946.806 3.42 3.42 0 013.138 3.138 3.42 3.42 0 00.806 1.946 3.42 3.42 0 010 4.438 3.42 3.42 0 00-.806 1.946 3.42 3.42 0 01-3.138 3.138 3.42 3.42 0 00-1.946.806 3.42 3.42 0 01-4.438 0 3.42 3.42 0 00-1.946-.806 3.42 3.42 0 01-3.138-3.138 3.42 3.42 0 00-.806-1.946 3.42 3.42 0 010-4.438 3.42 3.42 0 00.806-1.946 3.42 3.42 0 013.138-3.138z"
/>
</Svg>
<Text style={[styles.textLg, styles.heroTitleText]}>
You're up and running
</Text>
</View>
<TouchableOpacity
style={styles.whatsNextButton}
onPress={() => {
scrollViewRef.current?.scrollTo({
x: 0,
y: whatsNextYCoord,
});
}}
>
<Text style={[styles.textMd, styles.textCenter]}>
What's next?
</Text>
</TouchableOpacity>
</View>
</View>
<View style={styles.section}>
<View style={[styles.shadowBox]}>
<Text style={[styles.marginBottomMd, styles.textLg]}>
Learning materials
</Text>
<TouchableOpacity
style={[styles.listItem, styles.learning]}
onPress={() =>
Linking.openURL(
'https://nx.dev/getting-started/intro?utm_source=nx-project',
)
}
>
<Svg
width={24}
height={24}
stroke="#000000"
fill="none"
viewBox="0 0 24 24"
>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"
/>
</Svg>
<View style={styles.listItemTextContainer}>
<Text style={[styles.textMd]}>Documentation</Text>
<Text style={[styles.text2XS, styles.textSubtle]}>
Everything is in there
</Text>
</View>
<Svg
width={18}
height={18}
stroke="#000000"
fill="none"
viewBox="0 0 24 24"
>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M9 5l7 7-7 7"
/>
</Svg>
</TouchableOpacity>
<TouchableOpacity
style={[styles.listItem, styles.learning]}
onPress={() =>
Linking.openURL('https://blog.nrwl.io/?utm_source=nx-project')
}
>
<Svg
width={24}
height={24}
stroke="#000000"
fill="none"
viewBox="0 0 24 24"
>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M19 20H5a2 2 0 01-2-2V6a2 2 0 012-2h10a2 2 0 012 2v1m2 13a2 2 0 01-2-2V7m2 13a2 2 0 002-2V9a2 2 0 00-2-2h-2m-4-3H9M7 16h6M7 8h6v4H7V8z"
/>
</Svg>
<View style={styles.listItemTextContainer}>
<Text style={[styles.textMd]}>Blog</Text>
<Text style={[styles.text2XS, styles.textSubtle]}>
Changelog, features & events
</Text>
</View>
<Svg
width={18}
height={18}
stroke="#000000"
fill="none"
viewBox="0 0 24 24"
>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M9 5l7 7-7 7"
/>
</Svg>
</TouchableOpacity>
<TouchableOpacity
style={[styles.listItem, styles.learning]}
onPress={() =>
Linking.openURL(
'https://www.youtube.com/@NxDevtools/videos?utm_source=nx-project',
)
}
>
<Svg width={24} height={24} fill="#000000" viewBox="0 0 24 24">
<Path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z" />
</Svg>
<View style={styles.listItemTextContainer}>
<Text style={[styles.textMd]}>Youtube channel</Text>
<Text style={[styles.text2XS, styles.textSubtle]}>
Nx Show, talks & tutorials
</Text>
</View>
<Svg
width={18}
height={18}
stroke="#000000"
fill="none"
viewBox="0 0 24 24"
>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M9 5l7 7-7 7"
/>
</Svg>
</TouchableOpacity>
<TouchableOpacity
style={[styles.listItem, styles.learning]}
onPress={() =>
Linking.openURL(
'https://nx.dev/react-tutorial/1-code-generation?utm_source=nx-project',
)
}
>
<Svg
width={24}
height={24}
stroke="#000000"
fill="none"
viewBox="0 0 24 24"
>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5M7.188 2.239l.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656l-2.12 2.122"
/>
</Svg>
<View style={styles.listItemTextContainer}>
<Text style={[styles.textMd]}>Interactive tutorials</Text>
<Text style={[styles.text2XS, styles.textSubtle]}>
Create an app, step by step
</Text>
</View>
<Svg
width={18}
height={18}
stroke="#000000"
fill="none"
viewBox="0 0 24 24"
>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M9 5l7 7-7 7"
></Path>
</Svg>
</TouchableOpacity>
<TouchableOpacity
style={[styles.listItem, styles.learning]}
onPress={() =>
Linking.openURL(
'https://nxplaybook.com/?utm_source=nx-project',
)
}
>
<Svg
width={24}
height={24}
stroke="#000000"
fill="none"
viewBox="0 0 24 24"
>
<Path d="M12 14l9-5-9-5-9 5 9 5z"></Path>
<Path d="M12 14l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14z"></Path>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M12 14l9-5-9-5-9 5 9 5zm0 0l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14zm-4 6v-7.5l4-2.222"
></Path>
</Svg>
<View style={styles.listItemTextContainer}>
<Text style={[styles.textMd]}>Video courses</Text>
<Text style={[styles.text2XS, styles.textSubtle]}>
Nx custom courses
</Text>
</View>
<Svg
width={18}
height={18}
stroke="#000000"
fill="none"
viewBox="0 0 24 24"
>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M9 5l7 7-7 7"
></Path>
</Svg>
</TouchableOpacity>
</View>
</View>
<View style={[styles.section, styles.shadowBox]}>
<TouchableOpacity
onPress={() =>
Linking.openURL(
'https://marketplace.visualstudio.com/items?itemName=nrwl.angular-console&utm_source=nx-project',
)
}
>
<View style={[styles.listItem, styles.learning]}>
<Svg
width={48}
height={48}
fill="rgba(0, 122, 204, 1)"
viewBox="0 0 24 24"
>
<Path d="M23.15 2.587L18.21.21a1.494 1.494 0 0 0-1.705.29l-9.46 8.63-4.12-3.128a.999.999 0 0 0-1.276.057L.327 7.261A1 1 0 0 0 .326 8.74L3.899 12 .326 15.26a1 1 0 0 0 .001 1.479L1.65 17.94a.999.999 0 0 0 1.276.057l4.12-3.128 9.46 8.63a1.492 1.492 0 0 0 1.704.29l4.942-2.377A1.5 1.5 0 0 0 24 20.06V3.939a1.5 1.5 0 0 0-.85-1.352zm-5.146 14.861L10.826 12l7.178-5.448v10.896z" />
</Svg>
<View style={styles.listItemTextContainer}>
<Text
style={[
styles.textMd,
styles.textBold,
styles.marginBottomSm,
]}
>
Install Nx Console for VSCode
</Text>
<Text style={[styles.textXS, styles.textLight]}>
The official VSCode extension for Nx.
</Text>
</View>
</View>
</TouchableOpacity>
</View>
<View style={[styles.section, styles.shadowBox]}>
<TouchableOpacity
onPress={() =>
Linking.openURL(
'https://plugins.jetbrains.com/plugin/21060-nx-console',
)
}
>
<View style={[styles.listItem, styles.learning]}>
<Svg width={48} height={48} viewBox="20 20 60 60">
<Path d="m22.5 22.5h60v60h-60z" />
<G fill="#fff">
<Path d="m29.03 71.25h22.5v3.75h-22.5z" />
<Path d="m28.09 38 1.67-1.58a1.88 1.88 0 0 0 1.47.87c.64 0 1.06-.44 1.06-1.31v-5.98h2.58v6a3.48 3.48 0 0 1 -.87 2.6 3.56 3.56 0 0 1 -2.57.95 3.84 3.84 0 0 1 -3.34-1.55z" />
<Path d="m36 30h7.53v2.19h-5v1.44h4.49v2h-4.42v1.49h5v2.21h-7.6z" />
<Path d="m47.23 32.29h-2.8v-2.29h8.21v2.27h-2.81v7.1h-2.6z" />
<Path d="m29.13 43.08h4.42a3.53 3.53 0 0 1 2.55.83 2.09 2.09 0 0 1 .6 1.53 2.16 2.16 0 0 1 -1.44 2.09 2.27 2.27 0 0 1 1.86 2.29c0 1.61-1.31 2.59-3.55 2.59h-4.44zm5 2.89c0-.52-.42-.8-1.18-.8h-1.29v1.64h1.24c.79 0 1.25-.26 1.25-.81zm-.9 2.66h-1.57v1.73h1.62c.8 0 1.24-.31 1.24-.86 0-.5-.4-.87-1.27-.87z" />
<Path d="m38 43.08h4.1a4.19 4.19 0 0 1 3 1 2.93 2.93 0 0 1 .9 2.19 3 3 0 0 1 -1.93 2.89l2.24 3.27h-3l-1.88-2.84h-.87v2.84h-2.56zm4 4.5c.87 0 1.39-.43 1.39-1.11 0-.75-.54-1.12-1.4-1.12h-1.44v2.26z" />
<Path d="m49.59 43h2.5l4 9.44h-2.79l-.67-1.69h-3.63l-.67 1.69h-2.71zm2.27 5.73-1-2.65-1.06 2.65z" />
<Path d="m56.46 43.05h2.6v9.37h-2.6z" />
<Path d="m60.06 43.05h2.42l3.37 5v-5h2.57v9.37h-2.26l-3.53-5.14v5.14h-2.57z" />
<Path d="m68.86 51 1.45-1.73a4.84 4.84 0 0 0 3 1.13c.71 0 1.08-.24 1.08-.65 0-.4-.31-.6-1.59-.91-2-.46-3.53-1-3.53-2.93 0-1.74 1.37-3 3.62-3a5.89 5.89 0 0 1 3.86 1.25l-1.26 1.84a4.63 4.63 0 0 0 -2.62-.92c-.63 0-.94.25-.94.6 0 .42.32.61 1.63.91 2.14.46 3.44 1.16 3.44 2.91 0 1.91-1.51 3-3.79 3a6.58 6.58 0 0 1 -4.35-1.5z" />
</G>
</Svg>
<View style={styles.listItemTextContainer}>
<Text
style={[
styles.textMd,
styles.textBold,
styles.marginBottomSm,
]}
>
Install Nx Console for JetBrains
</Text>
<Text style={[styles.textXS, styles.textLight]}>
Available for WebStorm, Intellij IDEA Ultimate and more!
</Text>
</View>
</View>
</TouchableOpacity>
</View>
<View style={styles.section}>
<TouchableOpacity
onPress={() =>
Linking.openURL('https://nx.app/?utm_source=nx-project')
}
>
<View style={styles.shadowBox}>
<View style={[styles.listItem, styles.marginBottomMd]}>
<Svg
width={48}
height={48}
viewBox="0 0 24 24"
stroke="currentColor"
fill="transparent"
>
<Path
strokeWidth="2"
d="M23 3.75V6.5c-3.036 0-5.5 2.464-5.5 5.5s-2.464 5.5-5.5 5.5-5.5 2.464-5.5 5.5H3.75C2.232 23 1 21.768 1 20.25V3.75C1 2.232 2.232 1 3.75 1h16.5C21.768 1 23 2.232 23 3.75Z"
/>
<Path
strokeWidth="2"
d="M23 6v14.1667C23 21.7307 21.7307 23 20.1667 23H6c0-3.128 2.53867-5.6667 5.6667-5.6667 3.128 0 5.6666-2.5386 5.6666-5.6666C17.3333 8.53867 19.872 6 23 6Z"
/>
</Svg>
<View style={styles.listItemTextContainer}>
<Text
style={[
styles.textMd,
styles.textBold,
styles.marginBottomSm,
]}
>
Nx Cloud
</Text>
<Text style={[styles.textXS, styles.textLight]}>
Enable faster CI & better DX
</Text>
</View>
</View>
<View style={styles.codeBlock}>
<Text style={[styles.monospace]}>nx connect-to-nx-cloud</Text>
</View>
</View>
</TouchableOpacity>
</View>
<View style={styles.section}>
<TouchableOpacity
onPress={() =>
Linking.openURL('https://nx.app/?utm_source=nx-project')
}
>
<View style={[styles.listItem, styles.shadowBox]}>
<Svg width={48} height={48} fill="#000000" viewBox="0 0 24 24">
<Path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12" />
</Svg>
<View style={styles.listItemTextContainer}>
<Text
style={[
styles.textMd,
styles.textBold,
styles.marginBottomSm,
]}
>
Nx is open source
</Text>
<Text style={[styles.textXS, styles.textLight]}>
Love Nx? Give us a star!
</Text>
</View>
</View>
</TouchableOpacity>
</View>
<View
style={styles.section}
onLayout={(event) => {
const layout = event.nativeEvent.layout;
setWhatsNextYCoord(layout.y);
}}
>
<View style={styles.shadowBox}>
<Text style={[styles.textLg, styles.marginBottomMd]}>
Next steps
</Text>
<Text
style={[styles.textSm, styles.textLight, styles.marginBottomMd]}
>
Here are some things you can do with Nx:
</Text>
<View style={styles.listItem}>
<Svg
width={24}
height={24}
stroke="#000000"
fill="none"
viewBox="0 0 24 24"
>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
/>
</Svg>
<View style={styles.listItemTextContainer}>
<Text style={styles.textSm}>Add UI library</Text>
</View>
</View>
<View style={[styles.codeBlock, styles.marginBottomLg]}>
<Text style={[styles.textXS, styles.monospace, styles.comment]}>
# Generate UI lib
</Text>
<Text
style={[
styles.textXS,
styles.monospace,
styles.marginBottomMd,
]}
>
nx g @nx/expo:lib ui
</Text>
<Text style={[styles.textXS, styles.monospace, styles.comment]}>
# Add a component
</Text>
<Text style={[styles.textXS, styles.monospace]}>nx g \</Text>
<Text style={[styles.textXS, styles.monospace]}>
@nx/expo:component \
</Text>
<Text style={[styles.textXS, styles.monospace]}>
ui/src/lib/button
</Text>
</View>
<View style={styles.listItem}>
<Svg
width={24}
height={24}
stroke="#000000"
fill="none"
viewBox="0 0 24 24"
>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
/>
</Svg>
<View style={styles.listItemTextContainer}>
<Text style={styles.textSm}>
View interactive project graph
</Text>
</View>
</View>
<View style={[styles.codeBlock, styles.marginBottomLg]}>
<Text style={[styles.textXS, styles.monospace]}>nx graph</Text>
</View>
<View style={styles.listItem}>
<Svg
width={24}
height={24}
stroke="#000000"
fill="none"
viewBox="0 0 24 24"
>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
/>
</Svg>
<View style={styles.listItemTextContainer}>
<Text style={styles.textSm}>Run affected commands</Text>
</View>
</View>
<View style={styles.codeBlock}>
<Text style={[styles.textXS, styles.monospace, styles.comment]}>
# See what's affected by changes
</Text>
<Text
style={[
styles.textXS,
styles.monospace,
styles.marginBottomMd,
]}
>
nx affected:graph
</Text>
<Text style={[styles.textXS, styles.monospace, styles.comment]}>
# run tests for current changes
</Text>
<Text
style={[
styles.textXS,
styles.monospace,
styles.marginBottomMd,
]}
>
nx affected:text
</Text>
<Text style={[styles.textXS, styles.monospace, styles.comment]}>
# run e2e tests for current
</Text>
<Text style={[styles.textXS, styles.monospace, styles.comment]}>
# changes
</Text>
<Text style={[styles.textXS, styles.monospace]}>
nx affected:e2e
</Text>
</View>
</View>
<View style={[styles.listItem, styles.love]}>
<Text style={styles.textSubtle}>Carefully crafted with </Text>
<Svg
width={24}
height={24}
fill="rgba(252, 165, 165, 1)"
stroke="none"
viewBox="0 0 24 24"
>
<Path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z"
/>
</Svg>
</View>
</View>
</ScrollView>
</SafeAreaView>
</>
);
};
const styles = StyleSheet.create({
scrollView: {
backgroundColor: '#ffffff',
},
codeBlock: {
backgroundColor: 'rgba(55, 65, 81, 1)',
marginVertical: 12,
padding: 12,
borderRadius: 4,
},
monospace: {
color: '#ffffff',
fontFamily: 'Courier New',
marginVertical: 4,
},
comment: {
color: '#cccccc',
},
marginBottomSm: {
marginBottom: 6,
},
marginBottomMd: {
marginBottom: 18,
},
marginBottomLg: {
marginBottom: 24,
},
textLight: {
fontWeight: '300',
},
textBold: {
fontWeight: '500',
},
textCenter: {
textAlign: 'center',
},
text2XS: {
fontSize: 12,
},
textXS: {
fontSize: 14,
},
textSm: {
fontSize: 16,
},
textMd: {
fontSize: 18,
},
textLg: {
fontSize: 24,
},
textXL: {
fontSize: 48,
},
textContainer: {
marginVertical: 12,
},
textSubtle: {
color: '#6b7280',
},
section: {
marginVertical: 24,
marginHorizontal: 12,
},
shadowBox: {
backgroundColor: 'white',
borderRadius: 24,
shadowColor: 'black',
shadowOpacity: 0.15,
shadowOffset: {
width: 1,
height: 4,
},
shadowRadius: 12,
padding: 24,
marginBottom: 24,
},
listItem: {
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
},
listItemTextContainer: {
marginLeft: 12,
flex: 1,
},
appTitleText: {
paddingTop: 12,
fontWeight: '500',
},
hero: {
borderRadius: 12,
backgroundColor: '#143055',
padding: 36,
marginBottom: 24,
},
heroTitle: {
flex: 1,
flexDirection: 'row',
},
heroTitleText: {
color: '#ffffff',
marginLeft: 12,
},
heroText: {
color: '#ffffff',
marginVertical: 12,
},
whatsNextButton: {
backgroundColor: '#ffffff',
paddingVertical: 16,
borderRadius: 8,
width: '50%',
marginTop: 24,
},
learning: {
marginVertical: 12,
},
love: {
marginTop: 12,
justifyContent: 'center',
},
});
export default App;

View File

@@ -0,0 +1 @@
import '@testing-library/jest-native/extend-expect';

View File

@@ -0,0 +1,15 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"types": ["node"]
},
"files": ["../../node_modules/@nx/expo/typings/svg.d.ts"],
"exclude": [
"jest.config.ts",
"**/*.spec.ts",
"**/*.spec.tsx",
"test-setup.ts"
],
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"]
}

View File

@@ -1,7 +1,23 @@
{ {
"extends": ["../../tsconfig.base", "expo/tsconfig.base"], "extends": "../../tsconfig.base.json",
"compilerOptions": { "compilerOptions": {
"strict": true "allowSyntheticDefaultImports": true,
"jsx": "react-native",
"lib": ["dom", "esnext"],
"moduleResolution": "node",
"skipLibCheck": true,
"resolveJsonModule": true,
"strict": true,
"declaration": true
}, },
"include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts"] "files": [],
"include": [],
"references": [
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.spec.json"
}
]
} }

View File

@@ -0,0 +1,20 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"module": "commonjs",
"types": ["jest", "node"]
},
"include": [
"jest.config.ts",
"src/**/*.test.ts",
"src/**/*.spec.ts",
"src/**/*.test.tsx",
"src/**/*.spec.tsx",
"src/**/*.test.js",
"src/**/*.spec.js",
"src/**/*.test.jsx",
"src/**/*.spec.jsx",
"src/**/*.d.ts"
]
}

3
babel.config.json Normal file
View File

@@ -0,0 +1,3 @@
{
"babelrcRoots": ["*"]
}

5
jest.config.ts Normal file
View File

@@ -0,0 +1,5 @@
import { getJestProjects } from '@nx/jest';
export default {
projects: getJestProjects(),
};

3
jest.preset.js Normal file
View File

@@ -0,0 +1,3 @@
const nxPreset = require('@nx/jest/preset').default;
module.exports = { ...nxPreset };

13
nx.json
View File

@@ -11,6 +11,19 @@
}, },
"lint": { "lint": {
"cache": true "cache": true
},
"@nx/jest:jest": {
"cache": true,
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"options": {
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
}
} }
}, },
"namedInputs": { "namedInputs": {

View File

@@ -5,12 +5,27 @@
"scripts": {}, "scripts": {},
"private": true, "private": true,
"devDependencies": { "devDependencies": {
"@config-plugins/detox": "~6.0.0",
"@expo/cli": "~0.10.13",
"@nx/detox": "17.2.8",
"@nx/expo": "17.2.8",
"@nx/jest": "17.2.8",
"@nx/js": "17.2.8", "@nx/js": "17.2.8",
"@nx/workspace": "17.2.8", "@nx/workspace": "17.2.8",
"@swc-node/register": "~1.6.8", "@swc-node/register": "~1.6.8",
"@swc/core": "~1.3.102", "@swc/core": "~1.3.102",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/jest-native": "~5.4.3",
"@testing-library/react-native": "~12.3.0",
"@types/jest": "^29.4.0",
"@types/node": "18.16.9",
"@types/react": "18.0.28",
"@typescript-eslint/eslint-plugin": "^6.18.1", "@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1", "@typescript-eslint/parser": "^6.18.1",
"babel-jest": "^29.4.1",
"babel-preset-expo": "~9.5.2",
"detox": "^20.11.1",
"eas-cli": "~5.2.0",
"eslint": "^8.56.0", "eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
@@ -20,8 +35,30 @@
"eslint-plugin-prettier": "^5.1.3", "eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "7.32.2", "eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0", "eslint-plugin-react-hooks": "4.6.0",
"jest": "^29.4.1",
"jest-circus": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-expo": "~49.0.0",
"metro": "0.76.8",
"metro-resolver": "0.76.8",
"nx": "17.2.8", "nx": "17.2.8",
"prettier": "^3.0.3", "prettier": "^3.0.3",
"react-test-renderer": "18.2.0",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.2.2" "typescript": "~5.2.2"
},
"dependencies": {
"@expo/metro-config": "~0.10.7",
"expo": "49.0.16",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.6",
"react-native-svg": "13.9.0",
"react-native-svg-transformer": "1.0.0",
"react-native-web": "~0.19.9",
"tslib": "^2.3.0"
} }
} }

5689
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,28 @@
/**
* This script is used to patch the '@nx/expo' package to work with EAS Build.
* It is run as a eas-build-post-install script in the 'package.json' of expo app.
* It is executed as 'node tools/scripts/eas-build-post-install.mjs <workspace root> <project root>'
* It will create a symlink from the project's node_modules to the workspace's node_modules.
*/
import { symlink, existsSync } from 'fs';
import { join } from 'path';
const [workspaceRoot, projectRoot] = process.argv.slice(2);
if (existsSync(join(workspaceRoot, 'node_modules'))) {
console.log('Symlink already exists');
process.exit(0);
}
symlink(
join(projectRoot, 'node_modules'),
join(workspaceRoot, 'node_modules'),
'dir',
(err) => {
if (err) console.log(err);
else {
console.log('Symlink created');
}
},
);

View File

@@ -0,0 +1,33 @@
/*
* This script is used to patch the '@nx/expo' package to work with EAS Build.
* It is run as the eas-build-pre-install script in the 'package.json' of expo app.
* It is executed as 'node tools/scripts/eas-build-pre-install.mjs <workspace root> <project root>'
* It will copy the dependencies and devDependencies from the workspace package.json to project's package.json.
* This is needed because EAS Build does the install in project's directory and not workspace's directory.
*/
import { readFileSync, writeFileSync } from 'fs';
import { join } from 'path';
const [workspaceRoot, projectRoot] = process.argv.slice(2);
if (!workspaceRoot) {
throw new Error('Missing workspace root');
}
if (!projectRoot) {
throw new Error('Missing project root');
}
try {
const workspacePackage = JSON.parse(
readFileSync(join(workspaceRoot, 'package.json')).toString(),
);
const projectPackage = JSON.parse(
readFileSync(join(projectRoot, 'package.json')).toString(),
);
projectPackage.dependencies = workspacePackage.dependencies;
projectPackage.devDependencies = workspacePackage.devDependencies;
writeFileSync(
join(projectRoot, 'package.json'),
JSON.stringify(projectPackage, null, 2),
);
} catch (e) {
console.error('Error reading package.json file', e);
}