Skip to content

Commit 5056ce4

Browse files
Initial commit for SPM
1 parent d14af5e commit 5056ce4

File tree

592 files changed

+30635
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

592 files changed

+30635
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
/.build
3+
/Packages
4+
xcuserdata/
5+
DerivedData/
6+
.swiftpm/configuration/registries.json
7+
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
8+
.netrc
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

Package.resolved

Lines changed: 42 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
// swift-tools-version: 5.10
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+
import PackageDescription
5+
6+
let package = Package(
7+
name: "PassioNutritionUIModule",
8+
defaultLocalization: "en",
9+
platforms: [
10+
.iOS(.v14)
11+
],
12+
products: [
13+
// Products define the executables and libraries a package produces, making them visible to other packages.
14+
.library(
15+
name: "PassioNutritionUIModule",
16+
targets: ["PassioNutritionUIModule"]),
17+
],
18+
dependencies: [
19+
// Dependencies declare other packages that this package depends on.
20+
.package(url: "https://github.com/Passiolife/Passio-Nutrition-AI-iOS-SDK-Distribution",
21+
.upToNextMajor(from: "3.0.0")),
22+
.package(url: "https://github.com/SwipeCellKit/SwipeCellKit",
23+
.upToNextMajor(from: "2.7.1")),
24+
.package(url: "https://github.com/WenchaoD/FSCalendar.git",
25+
.upToNextMajor(from: "2.8.4")),
26+
.package(url: "https://github.com/SimonFairbairn/SwiftyMarkdown",
27+
.upToNextMajor(from: "1.2.4"))
28+
],
29+
targets: [
30+
// Targets are the basic building blocks of a package, defining a module or a test suite.
31+
// Targets can depend on other targets in this package and products from dependencies.
32+
.target(
33+
name: "PassioNutritionUIModule",
34+
dependencies: [
35+
.product(name: "PassioNutritionAISDK",
36+
package: "Passio-Nutrition-AI-iOS-SDK-Distribution"),
37+
"SwipeCellKit",
38+
"FSCalendar",
39+
"SwiftyMarkdown"
40+
]
41+
)
42+
]
43+
)
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"author" : "xcode",
4+
"version" : 1
5+
}
6+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"info" : {
3+
"author" : "xcode",
4+
"version" : 1
5+
},
6+
"properties" : {
7+
"provides-namespace" : true
8+
}
9+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"data" : [
3+
{
4+
"filename" : "Inter-Black.ttf",
5+
"idiom" : "universal"
6+
}
7+
],
8+
"info" : {
9+
"author" : "xcode",
10+
"version" : 1
11+
}
12+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"data" : [
3+
{
4+
"filename" : "Inter-Bold.ttf",
5+
"idiom" : "universal"
6+
}
7+
],
8+
"info" : {
9+
"author" : "xcode",
10+
"version" : 1
11+
}
12+
}
Binary file not shown.

0 commit comments

Comments
 (0)