Skip to content

Commit bf76c02

Browse files
Temporarily remove LanguageClient dependency (#18)
* Temporarily remove LanguageClient dependency * Remove deprecated `ProcessService` dependency * Remove file
1 parent 43e2bc6 commit bf76c02

File tree

3 files changed

+5
-220
lines changed

3 files changed

+5
-220
lines changed

Diff for: Package.resolved

+4-67
Original file line numberDiff line numberDiff line change
@@ -14,80 +14,17 @@
1414
"kind" : "remoteSourceControl",
1515
"location" : "https://github.com/ChimeHQ/ConcurrencyPlus",
1616
"state" : {
17-
"revision" : "b5ba8d5ea6bfe9e43ccc44aa63f9b458057fa0f4",
18-
"version" : "0.4.1"
19-
}
20-
},
21-
{
22-
"identity" : "fseventswrapper",
23-
"kind" : "remoteSourceControl",
24-
"location" : "https://github.com/Frizlab/FSEventsWrapper",
25-
"state" : {
26-
"revision" : "e0c59a2ce2775e5f6642da6d19207445f10112d0",
27-
"version" : "1.0.2"
28-
}
29-
},
30-
{
31-
"identity" : "glob",
32-
"kind" : "remoteSourceControl",
33-
"location" : "https://github.com/Bouke/Glob",
34-
"state" : {
35-
"revision" : "deda6e163d2ff2a8d7e138e2c3326dbd71157faf",
36-
"version" : "1.0.5"
37-
}
38-
},
39-
{
40-
"identity" : "jsonrpc",
41-
"kind" : "remoteSourceControl",
42-
"location" : "https://github.com/ChimeHQ/JSONRPC",
43-
"state" : {
44-
"revision" : "afc20d00e38674774f84edc325424a32ae3b9e01",
45-
"version" : "0.7.0"
46-
}
47-
},
48-
{
49-
"identity" : "languageclient",
50-
"kind" : "remoteSourceControl",
51-
"location" : "https://github.com/ChimeHQ/LanguageClient",
52-
"state" : {
53-
"revision" : "92beeecd0bb783da52227839ba6c55e43fc866ec",
54-
"version" : "0.5.1"
55-
}
56-
},
57-
{
58-
"identity" : "languageserverprotocol",
59-
"kind" : "remoteSourceControl",
60-
"location" : "https://github.com/ChimeHQ/LanguageServerProtocol",
61-
"state" : {
62-
"revision" : "192bcfdcf7a013da49c6fa1b95de66254ce7c614",
63-
"version" : "0.9.1"
64-
}
65-
},
66-
{
67-
"identity" : "processenv",
68-
"kind" : "remoteSourceControl",
69-
"location" : "https://github.com/ChimeHQ/ProcessEnv",
70-
"state" : {
71-
"revision" : "29487b6581bb785c372c611c943541ef4309d051",
72-
"version" : "0.3.1"
73-
}
74-
},
75-
{
76-
"identity" : "processservice",
77-
"kind" : "remoteSourceControl",
78-
"location" : "https://github.com/ChimeHQ/ProcessService",
79-
"state" : {
80-
"revision" : "369fb0379983d3b43c7d7ad62c4e91ee020e347c",
81-
"version" : "0.2.6"
17+
"revision" : "8dc56499412a373d617d50d059116bccf44b9874",
18+
"version" : "0.4.2"
8219
}
8320
},
8421
{
8522
"identity" : "swiftlintplugin",
8623
"kind" : "remoteSourceControl",
8724
"location" : "https://github.com/lukepistrol/SwiftLintPlugin",
8825
"state" : {
89-
"revision" : "d3ec7fb242ebe1d8e23bf17e58a1e27d43125994",
90-
"version" : "0.2.6"
26+
"revision" : "ea6d3ca895b49910f790e98e4b4ca658e0fe490e",
27+
"version" : "0.54.0"
9128
}
9229
}
9330
],

Diff for: Package.swift

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ let package = Package(
1515
],
1616
dependencies: [
1717
.package(url: "https://github.com/ChimeHQ/ConcurrencyPlus", from: "0.4.1"),
18-
.package(url: "https://github.com/ChimeHQ/LanguageClient", from: "0.5.0"),
19-
.package(url: "https://github.com/ChimeHQ/ProcessService", from: "0.2.6"),
2018
.package(
2119
url: "https://github.com/lukepistrol/SwiftLintPlugin",
2220
from: "0.2.2"
@@ -29,7 +27,7 @@ let package = Package(
2927
targets: [
3028
.target(
3129
name: "CodeEditKit",
32-
dependencies: ["AnyCodable", "ConcurrencyPlus", "LanguageClient", .product(name: "ProcessServiceClient", package: "ProcessService")],
30+
dependencies: ["AnyCodable", "ConcurrencyPlus"],
3331
plugins: [.plugin(name: "SwiftLint", package: "SwiftLintPlugin")]
3432
),
3533
.testTarget(

Diff for: Sources/CodeEditKit/NonUIExtensions/LSP/LanguageExtension.swift

-150
This file was deleted.

0 commit comments

Comments
 (0)