@@ -15,7 +15,8 @@ let package = Package(
1515 . package ( url: " https://github.com/apple/swift-argument-parser " , from: " 1.0.0 " ) ,
1616 . package ( url: " https://github.com/jpsim/Yams.git " , from: " 4.0.0 " ) ,
1717 . package ( url: " https://github.com/apple/swift-log.git " , from: " 1.4.0 " ) ,
18- . package ( url: " https://github.com/stencilproject/Stencil.git " , from: " 0.14.2 " ) ,
18+ . package ( url: " https://github.com/stencilproject/Stencil.git " , from: " 0.15.1 " ) ,
19+ . package ( url: " https://github.com/SwiftGen/StencilSwiftKit " , from: " 2.10.1 " ) ,
1920 . package ( url: " https://github.com/tuist/XcodeProj.git " , from: " 8.5.0 " ) ,
2021 . package ( url: " https://github.com/pointfreeco/swift-custom-dump " , from: " 0.3.0 " )
2122 ] ,
@@ -45,7 +46,10 @@ let package = Package(
4546 // Exports resources to Xcode project
4647 . target(
4748 name: " XcodeExport " ,
48- dependencies: [ " FigmaExportCore " , . product( name: " Stencil " , package : " Stencil " ) ] ,
49+ dependencies: [
50+ " FigmaExportCore " , . product( name: " Stencil " , package : " Stencil " ) ,
51+ " StencilSwiftKit "
52+ ] ,
4953 resources: [
5054 . copy( " Resources/ " )
5155 ]
@@ -54,7 +58,7 @@ let package = Package(
5458 // Exports resources to Android project
5559 . target(
5660 name: " AndroidExport " ,
57- dependencies: [ " FigmaExportCore " , " Stencil " ] ,
61+ dependencies: [ " FigmaExportCore " , " Stencil " , " StencilSwiftKit " ] ,
5862 resources: [
5963 . copy( " Resources/ " )
6064 ]
@@ -72,7 +76,10 @@ let package = Package(
7276 ) ,
7377 . testTarget(
7478 name: " XcodeExportTests " ,
75- dependencies: [ " XcodeExport " , . product( name: " CustomDump " , package : " swift-custom-dump " ) ]
79+ dependencies: [
80+ " XcodeExport " , . product( name: " CustomDump " , package : " swift-custom-dump " ) ,
81+ " StencilSwiftKit "
82+ ]
7683 ) ,
7784 . testTarget(
7885 name: " AndroidExportTests " ,
0 commit comments