$ ether remove twof/VaporCRUDRouter
Error: ⚠️ [EtherError.pinNotFound: No package was found with the name 'twof/VaporCRUDRouter']
$ ether remove VaporCRUDRouter
Error: ⚠️ [EtherError.pinNotFound: No package was found with the name 'VaporCRUDRouter']
$ cat Package.swift
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "CLSwift",
dependencies: [
.package(url: "https://github.com/twof/VaporCRUDRouter.git", from: "1.7.0")
],
targets: [
.target(name: "CLSwift", dependencies: ["VaporCRUDRouter"]),
.testTarget(name: "CLSwiftTests", dependencies: ["CLSwift"]),
]
)
This limitation is due to remove reading the Package.resolved file to get the URL of the package to remove. I'll see what I can do so that isn't necessary.