Skip to content
This repository was archived by the owner on Nov 19, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
132 changes: 84 additions & 48 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ let package = Package(
.library(name: "WebModule", targets: ["WebModule"]),
],
dependencies: [
.package(url: "https://github.com/feathercms/feather-core", .branch("dev")),
.package(url: "https://github.com/feathercms/web-objects", .branch("main")),
.package(url: "https://github.com/feathercms/feather-core", .branch("dev")),
.package(url: "https://github.com/feathercms/web-objects", .branch("main")),
],
targets: [
.target(name: "WebModule", dependencies: [
.product(name: "Feather", package: "feather-core"),
.product(name: "FeatherCore", package: "feather-core"),
.product(name: "WebObjects", package: "web-objects"),
],
resources: [
Expand Down
2 changes: 1 addition & 1 deletion Sources/WebModule/Api/WebModuleKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Vapor
import Fluent
import Feather
import FeatherCore

public extension HookName {
static let installWebPages: HookName = "install-web-pages"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import Vapor
import Feather
import FeatherCore
import Fluent
import WebObjects

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import Vapor
import Feather
import FeatherCore
import Fluent
import WebObjects

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import Vapor
import Feather
import FeatherCore
import Fluent
import WebObjects

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Vapor
import Fluent
import Feather
import FeatherCore

struct WebSettingsAdminController {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import Vapor
import Feather
import FeatherCore
import Fluent
import WebObjects

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import Vapor
import Feather
import FeatherCore
import Fluent
import WebObjects

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import Vapor
import Feather
import FeatherCore
import Fluent
import WebObjects

Expand Down
2 changes: 1 addition & 1 deletion Sources/WebModule/Controllers/WebResponseController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import Vapor
import Feather
import FeatherCore
import Fluent

struct WebResponseController {
Expand Down
2 changes: 1 addition & 1 deletion Sources/WebModule/Database/Models/WebMenuItemModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation
import Fluent
import Feather
import FeatherCore

final class WebMenuItemModel: FeatherDatabaseModel {
typealias Module = WebModule
Expand Down
Loading