mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-02 05:52:18 +00:00
Fix some issues with monorepo refactoring
- Update app library location in scripts env - Move Demo to subfolder to only have one .xcodeproj at root - Fix submdoule pointer
This commit is contained in:
parent
7841a2c4e4
commit
4e028d83af
@ -1,5 +1,14 @@
|
|||||||
{
|
{
|
||||||
"pins" : [
|
"pins" : [
|
||||||
|
{
|
||||||
|
"identity" : "generic-json-swift",
|
||||||
|
"kind" : "remoteSourceControl",
|
||||||
|
"location" : "https://github.com/iwill/generic-json-swift",
|
||||||
|
"state" : {
|
||||||
|
"revision" : "0a06575f4038b504e78ac330913d920f1630f510",
|
||||||
|
"version" : "2.0.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"identity" : "openssl-apple",
|
"identity" : "openssl-apple",
|
||||||
"kind" : "remoteSourceControl",
|
"kind" : "remoteSourceControl",
|
@ -17,9 +17,9 @@ let package = Package(
|
|||||||
)
|
)
|
||||||
],
|
],
|
||||||
dependencies: [
|
dependencies: [
|
||||||
.package(path: "../../Packages/PassepartoutKit-Framework"),
|
.package(path: "../../../Packages/PassepartoutKit-Framework"),
|
||||||
.package(path: "../../Packages/PassepartoutOpenVPNOpenSSL"),
|
.package(path: "../../../Packages/PassepartoutOpenVPNOpenSSL"),
|
||||||
.package(path: "../../Packages/PassepartoutWireGuardGo")
|
.package(path: "../../../Packages/PassepartoutWireGuardGo")
|
||||||
],
|
],
|
||||||
targets: [
|
targets: [
|
||||||
.target(
|
.target(
|
@ -1 +1 @@
|
|||||||
Subproject commit 88710d815b5af300d9a714d42807d5bddeb97bed
|
Subproject commit 1560c52ef812271b59526f554593da6c0f653d59
|
@ -6,3 +6,5 @@ SCAN_SCHEME="Passepartout"
|
|||||||
FL_VERSION_NUMBER_TARGET="Passepartout"
|
FL_VERSION_NUMBER_TARGET="Passepartout"
|
||||||
FL_BUILD_NUMBER_PROJECT="Passepartout.xcodeproj"
|
FL_BUILD_NUMBER_PROJECT="Passepartout.xcodeproj"
|
||||||
PILOT_BETA_APP_DESCRIPTION="Passepartout is your go-to app for VPN and privacy."
|
PILOT_BETA_APP_DESCRIPTION="Passepartout is your go-to app for VPN and privacy."
|
||||||
|
|
||||||
|
API_PACKAGE_PATH="Packages/App/Sources/CommonAPI/API"
|
||||||
|
@ -18,7 +18,7 @@ fastlane_require "fileutils"
|
|||||||
Dotenv.load ".env.secret"
|
Dotenv.load ".env.secret"
|
||||||
|
|
||||||
setup_ci if ENV["CI"]
|
setup_ci if ENV["CI"]
|
||||||
api = "Library/Sources/CommonAPI/API"
|
api = ENV["API_PACKAGE_PATH"]
|
||||||
metadata = "fastlane/metadata"
|
metadata = "fastlane/metadata"
|
||||||
logname = "CHANGELOG.txt"
|
logname = "CHANGELOG.txt"
|
||||||
build_path = "build"
|
build_path = "build"
|
||||||
|
@ -7,6 +7,6 @@ metadata_path="default/release_notes.txt"
|
|||||||
api_git="https://github.com/passepartoutvpn/api"
|
api_git="https://github.com/passepartoutvpn/api"
|
||||||
api_version="v5"
|
api_version="v5"
|
||||||
api_path=".api"
|
api_path=".api"
|
||||||
api_package_path="Library/Sources/CommonAPI/API"
|
api_package_path="Packages/App/Sources/CommonAPI/API"
|
||||||
translations_input_path="l10n"
|
translations_input_path="l10n"
|
||||||
translations_output_path="Library/Sources/UILibrary/Resources"
|
translations_output_path="Packages/App/Sources/UILibrary/Resources"
|
||||||
|
Loading…
Reference in New Issue
Block a user