Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
60 lines
2.0 KiB
Plaintext
60 lines
2.0 KiB
Plaintext
// swift-tools-version: 6.1
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "React-GeneratedCode",
|
|
platforms: [.iOS(.v15), .macCatalyst(SupportedPlatform.MacCatalystVersion.v13)],
|
|
products: [
|
|
// Products define the executables and libraries a package produces, making them visible to other packages.
|
|
.library(
|
|
name: "ReactCodegen",
|
|
targets: ["ReactCodegen"]),
|
|
.library(
|
|
name: "ReactAppDependencyProvider",
|
|
targets: ["ReactAppDependencyProvider"]),
|
|
],
|
|
dependencies: [
|
|
.package(name: "React", path: "{reactNativePath}")
|
|
],
|
|
targets: [
|
|
// Targets are the basic building blocks of a package, defining a module or a test suite.
|
|
// Targets can depend on other targets in this package and products from dependencies.
|
|
.target(
|
|
name: "ReactCodegen",
|
|
dependencies: ["React"],
|
|
path: "ReactCodegen",
|
|
exclude: ["ReactCodegen.podspec"],
|
|
publicHeadersPath: ".",
|
|
cSettings: [
|
|
.headerSearchPath("headers")
|
|
],
|
|
cxxSettings: [
|
|
.headerSearchPath("headers"),
|
|
.unsafeFlags(["-std=c++20"]),
|
|
],
|
|
linkerSettings: [
|
|
.linkedFramework("Foundation")
|
|
]
|
|
),
|
|
.target(
|
|
name: "ReactAppDependencyProvider",
|
|
dependencies: ["ReactCodegen"],
|
|
path: "ReactAppDependencyProvider",
|
|
exclude: ["ReactAppDependencyProvider.podspec"],
|
|
publicHeadersPath: ".",
|
|
cSettings: [
|
|
.headerSearchPath("headers"),
|
|
],
|
|
cxxSettings: [
|
|
.headerSearchPath("headers"),
|
|
.unsafeFlags(["-std=c++20"]),
|
|
],
|
|
linkerSettings: [
|
|
.linkedFramework("Foundation")
|
|
]
|
|
)
|
|
]
|
|
)
|