File tree Expand file tree Collapse file tree 5 files changed +45
-35
lines changed
.swiftpm/xcode/xcshareddata/xcschemes
Sources/SPMGraphConfigSetup/Resources Expand file tree Collapse file tree 5 files changed +45
-35
lines changed Original file line number Diff line number Diff line change 3838 buildConfiguration = " Debug"
3939 selectedDebuggerIdentifier = " Xcode.DebuggerFoundation.Debugger.LLDB"
4040 selectedLauncherIdentifier = " Xcode.DebuggerFoundation.Launcher.LLDB"
41- enableAddressSanitizer = " YES"
42- enableASanStackUseAfterReturn = " YES"
4341 launchStyle = " 0"
4442 useCustomWorkingDirectory = " NO"
4543 ignoresPersistentStateOnLaunch = " NO"
5957 </BuildableProductRunnable >
6058 <CommandLineArguments >
6159 <CommandLineArgument
62- argument = " load "
60+ argument = " visualize "
6361 isEnabled = " NO" >
6462 </CommandLineArgument >
6563 <CommandLineArgument
66- argument = " edit "
64+ argument = " config "
6765 isEnabled = " NO" >
6866 </CommandLineArgument >
6967 <CommandLineArgument
70- argument = " visualize "
71- isEnabled = " YES " >
68+ argument = " load "
69+ isEnabled = " NO " >
7270 </CommandLineArgument >
7371 <CommandLineArgument
7472 argument = " lint"
75- isEnabled = " NO " >
73+ isEnabled = " YES " >
7674 </CommandLineArgument >
7775 <CommandLineArgument
7876 argument = " $path_to_your_package"
7977 isEnabled = " YES" >
8078 </CommandLineArgument >
79+ <CommandLineArgument
80+ argument = " --verbose"
81+ isEnabled = " YES" >
82+ </CommandLineArgument >
8183 </CommandLineArguments >
84+ <EnvironmentVariables >
85+ <EnvironmentVariable
86+ key = " CI"
87+ value = " true"
88+ isEnabled = " NO" >
89+ </EnvironmentVariable >
90+ </EnvironmentVariables >
8291 </LaunchAction >
8392 <ProfileAction
8493 buildConfiguration = " Release"
Original file line number Diff line number Diff line change @@ -35,17 +35,17 @@ let package = Package(
3535 ) ,
3636 . package (
3737 url: " https://github.com/apple/swift-argument-parser.git " ,
38- . upToNextMinor( from: " 1.2 .2 " )
38+ . upToNextMinor( from: " 1.6 .2 " )
3939 ) ,
4040
4141 // TODO: Review which tag / Swift release to use
4242 // - Initially it may be strict and sometimes "enforce" specific Xcode/Swift toolchains
43- // - For now pinned to the 6.0 release / Xcode 16.0
43+ // - For now pinned to the 6.1 release / Xcode 16.3
4444 //
4545 // It auto exports SwiftToolsSupport, so no need to directly depend on the former 🙏
4646 . package (
4747 url: " https://github.com/apple/swift-package-manager " ,
48- revision: " swift-6.0 -RELEASE "
48+ revision: " swift-6.1 -RELEASE "
4949 ) ,
5050 . package (
5151 url: " https://github.com/aus-der-Technik/FileMonitor " ,
@@ -105,7 +105,8 @@ let package = Package(
105105 . product(
106106 name: " SwiftPMDataModel " ,
107107 package : " swift-package-manager "
108- )
108+ ) ,
109+ . target( name: " Core " ) ,
109110 ]
110111 ) ,
111112
Original file line number Diff line number Diff line change @@ -153,12 +153,6 @@ mint install getyourguide/spmgraph
153153
154154## Open roadmap
155155- [ ] Cover the core logic of Lint, Map, and Visualize libs with tests
156- - [ ] Improve the ` unusedDependencies ` lint rule to cover products with multiple targets
157- - [ ] Support macros (to become a GitHub issue)
158-
159- Ideas
160- - [ ] Add fix-it suggestion to lint errors
161- - [ ] Create Danger plugin for the linter functionality
162156
163157## Contributing
164158Check the [ CONTRIBUTING.md] ( ./CONTRIBUTING.md ) file.
Original file line number Diff line number Diff line change @@ -23,15 +23,12 @@ let package = Package(
2323 url: "git@github.com:getyourguide/spmgraph.git",
2424 revision: "f70a8f6d35ac40e4875d1822c36ddc15e0ca27ab"
2525 ),
26-
27- // TODO: Review which tag / Swift release to use
28- // - Initially it may be strict and sometimes "enforce" specific Xcode/Swift toolchains
29- // - For now pinned to the 6.0 release / Xcode 16.0
26+ // - For now pinned to the 6.1 release / Xcode 16.3
3027 //
3128 // It auto exports SwiftToolsSupport, so no need to directly depend on the former 🙏
3229 .package(
3330 url: "https://github.com/apple/swift-package-manager",
34- revision: "swift-6.0 -RELEASE"
31+ revision: "swift-6.1 -RELEASE"
3532 ),
3633 ],
3734 targets: [
You can’t perform that action at this time.
0 commit comments