Skip to content

Commit

Permalink
chore: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
danthorpe committed Apr 18, 2024
1 parent f463b05 commit ad55727
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import CompilerPluginSupport
import PackageDescription

var package = Package(name: "composable-loadable")
var package = Package(name: "swift-composable-loadable")

// MARK: 💫 Package Customization

Expand Down Expand Up @@ -38,6 +38,7 @@ let 📦 = Module.builder(

ComposableLoadable
<+ 📦 {
$0.createProduct = .library
$0.dependsOn = [
Utilities
]
Expand Down Expand Up @@ -112,7 +113,7 @@ extension String {
struct Module {
enum ProductType {
case executable
case library(Product.Library.LibraryType? = nil)
case library
}
enum TargetType {
case standard
Expand Down Expand Up @@ -218,11 +219,10 @@ extension Package {
func add(module: Module) {
// Check should create a product
switch module.createProduct {
case let .library(type):
case .library:
products.append(
.library(
name: module.name,
type: type,
targets: module.productTargets
)
)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# composable-loadable
A Swift Composable Architecture component for loadable domains.
# swift-composable-loadable
A Swift Composable Architecture component for loadable features.

0 comments on commit ad55727

Please sign in to comment.