Skip to content
This repository has been archived by the owner on Feb 28, 2020. It is now read-only.

Commit

Permalink
fix: fixed indentation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Audrey committed Nov 20, 2018
1 parent 316dcc6 commit 49bf961
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions refresh/templates/common/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,12 @@ let package = Package(
.target(name: "{{{executableModule}}}", dependencies: [ .target(name: "{{{applicationModule}}}"), "Kitura" , "HeliumLogger"]),
.target(name: "{{{applicationModule}}}", dependencies: [ "Kitura", "CloudEnvironment",{{#each modules}}{{{this}}}, {{/each}}
{{#ifCond appType '===' 'crud'}}
.target(name: "{{{generatedModule}}}"),
.target(name: "{{{generatedModule}}}"),
{{/ifCond}}
{{#ifCond sdkTargets.length '>' 0}}
{{#each sdkTargets}}
.target(name: "{{{this}}}"), {{/each}}
{{#each sdkTargets}}.target(name: "{{{this}}}"), {{/each}}
]),
{{#each sdkTargets}}
.target(name: "{{{this}}}", dependencies: ["SimpleHttpClient"], path: "Sources/{{{this}}}" ), {{/each}}
{{#each sdkTargets}}.target(name: "{{{this}}}", dependencies: ["SimpleHttpClient"], path: "Sources/{{{this}}}" ), {{/each}}
{{else}}
]),
{{/ifCond}}
Expand Down

0 comments on commit 49bf961

Please sign in to comment.