Skip to content

Commit 77bb7fd

Browse files
author
Владислав Прусаков
committed
Update names
1 parent 8fb4ad0 commit 77bb7fd

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
import PackageDescription
55

66
let package = Package(
7-
name: "CodeSyntaxCSSGenerator",
7+
name: "CodeSyntaxCSSGeneratorPlugin",
88
products: [
99
// Products define the executables and libraries produced by a package, and make them visible to other packages.
1010
.library(
11-
name: "CodeSyntaxCSSGenerator",
12-
targets: ["CodeSyntaxCSSGenerator"]),
11+
name: "CodeSyntaxCSSGeneratorPlugin",
12+
targets: ["CodeSyntaxCSSGeneratorPlugin"]),
1313
],
1414
dependencies: [
1515
// Dependencies declare other packages that this package depends on.
@@ -21,10 +21,10 @@ let package = Package(
2121
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
2222
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
2323
.target(
24-
name: "CodeSyntaxCSSGenerator",
24+
name: "CodeSyntaxCSSGeneratorPlugin",
2525
dependencies: ["Publish", "PublishColorUtils", "SplashPublishPlugin"]),
2626
.testTarget(
2727
name: "CodeSyntaxCSSGeneratorTests",
28-
dependencies: ["CodeSyntaxCSSGenerator"]),
28+
dependencies: ["CodeSyntaxCSSGeneratorPlugin"]),
2929
]
3030
)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CodeSyntaxCSSGenerator
1+
# CodeSyntaxCSSGeneratorPlugin
22

33
A [Publish](https://github.com/johnsundell/publish) plugin that generates a syntax code css styles for you [Splash Plugin](https://github.com/johnsundell/splashpublishplugin) from Xcode Color Theme.
44

@@ -20,7 +20,7 @@ let package = Package(
2020
...
2121
dependencies: [
2222
...
23-
"CodeSyntaxCSSGenerator"
23+
"CodeSyntaxCSSGeneratorPlugin"
2424
]
2525
)
2626
]
@@ -36,7 +36,7 @@ Move `dvtcolortheme` or `xccolortheme` file to Resource dirictory and intall the
3636

3737
// My xcode theme `Light.dvtcolortheme`
3838

39-
import CodeSyntaxCSSGenerator
39+
import CodeSyntaxCSSGeneratorPlugin
4040

4141
Site().publish(using: [
4242
.installPlugin(

0 commit comments

Comments
 (0)