Skip to content

Commit 2024dad

Browse files
AnthonyMDevgh-action-runner
authored andcommitted
Update to Nimble 13.8 (#785)
1 parent 0479c5a commit 2024dad

File tree

1 file changed

+42
-42
lines changed

1 file changed

+42
-42
lines changed

Project.swift

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -4,46 +4,46 @@ import ProjectDescriptionHelpers
44
// MARK: - Project
55

66
let project = Project(
7-
name: "ApolloDev",
8-
organizationName: "apollographql",
9-
packages: [
10-
.package(url: "https://github.com/Quick/Nimble.git", from: "13.2.0"),
11-
.package(path: "apollo-ios"),
12-
.package(path: "apollo-ios-codegen"),
13-
.package(path: "apollo-ios-pagination"),
14-
],
15-
settings: Settings.settings(configurations: [
16-
.debug(name: .debug, xcconfig: "Configuration/Apollo/Apollo-Project-Debug.xcconfig"),
17-
.release(name: .release, xcconfig: "Configuration/Apollo/Apollo-Project-Release.xcconfig"),
18-
.release(name: .performanceTesting, xcconfig: "Configuration/Apollo/Apollo-Project-Performance-Testing.xcconfig")
19-
]),
20-
targets: [
21-
.animalKingdomFramework(),
22-
.starWarsFramework(),
23-
.gitHubFramework(),
24-
.uploadFramework(),
25-
.subscriptionFramework(),
26-
.apolloWrapperFramework(),
27-
.apolloCodegenLibWrapperFramework(),
28-
.apolloInternalTestHelpersFramework(),
29-
.apolloCodegenInternalTestHelpersFramework(),
30-
.apolloTests(),
31-
.apolloPaginationTests(),
32-
.apolloPerformanceTests(),
33-
.apolloCodegenTests(),
34-
.codegenCLITests()
35-
],
36-
schemes: [
37-
.apolloCodegenTests(),
38-
.apolloPerformanceTests(),
39-
.apolloPaginationTests(),
40-
.apolloTests(),
41-
.codegenCLITests()
42-
],
43-
additionalFiles: [
44-
.glob(pattern: "Tests/TestPlans/**"),
45-
.folderReference(path: "Sources/\(ApolloTarget.gitHubAPI.name)/graphql"),
46-
.folderReference(path: "Sources/\(ApolloTarget.subscriptionAPI.name)/graphql"),
47-
.folderReference(path: "Sources/\(ApolloTarget.uploadAPI.name)/graphql")
48-
]
7+
name: "ApolloDev",
8+
organizationName: "apollographql",
9+
packages: [
10+
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "13.8.0")),
11+
.package(path: "apollo-ios"),
12+
.package(path: "apollo-ios-codegen"),
13+
.package(path: "apollo-ios-pagination"),
14+
],
15+
settings: Settings.settings(configurations: [
16+
.debug(name: .debug, xcconfig: "Configuration/Apollo/Apollo-Project-Debug.xcconfig"),
17+
.release(name: .release, xcconfig: "Configuration/Apollo/Apollo-Project-Release.xcconfig"),
18+
.release(name: .performanceTesting, xcconfig: "Configuration/Apollo/Apollo-Project-Performance-Testing.xcconfig"),
19+
]),
20+
targets: [
21+
.animalKingdomFramework(),
22+
.starWarsFramework(),
23+
.gitHubFramework(),
24+
.uploadFramework(),
25+
.subscriptionFramework(),
26+
.apolloWrapperFramework(),
27+
.apolloCodegenLibWrapperFramework(),
28+
.apolloInternalTestHelpersFramework(),
29+
.apolloCodegenInternalTestHelpersFramework(),
30+
.apolloTests(),
31+
.apolloPaginationTests(),
32+
.apolloPerformanceTests(),
33+
.apolloCodegenTests(),
34+
.codegenCLITests(),
35+
],
36+
schemes: [
37+
.apolloCodegenTests(),
38+
.apolloPerformanceTests(),
39+
.apolloPaginationTests(),
40+
.apolloTests(),
41+
.codegenCLITests(),
42+
],
43+
additionalFiles: [
44+
.glob(pattern: "Tests/TestPlans/**"),
45+
.folderReference(path: "Sources/\(ApolloTarget.gitHubAPI.name)/graphql"),
46+
.folderReference(path: "Sources/\(ApolloTarget.subscriptionAPI.name)/graphql"),
47+
.folderReference(path: "Sources/\(ApolloTarget.uploadAPI.name)/graphql"),
48+
]
4949
)

0 commit comments

Comments
 (0)