mirror of
https://github.com/laosb/SwiftTailwind.git
synced 2025-11-28 22:01:38 +00:00
fix: capturing source directives
This commit is contained in:
parent
506ec1b248
commit
cfb5d2a4a2
1 changed files with 4 additions and 3 deletions
|
|
@ -30,7 +30,7 @@ struct TailwindCSSBuildPlugin: BuildToolPlugin {
|
||||||
"@source"
|
"@source"
|
||||||
ZeroOrMore(.whitespace)
|
ZeroOrMore(.whitespace)
|
||||||
"\""
|
"\""
|
||||||
Capture(ZeroOrMore(.word))
|
Capture { OneOrMore(CharacterClass.anyOf("\"").inverted) }
|
||||||
"\""
|
"\""
|
||||||
ZeroOrMore(.whitespace)
|
ZeroOrMore(.whitespace)
|
||||||
";"
|
";"
|
||||||
|
|
@ -78,9 +78,10 @@ struct TailwindCSSBuildPlugin: BuildToolPlugin {
|
||||||
let outputURL = outputBundleURL.appending(
|
let outputURL = outputBundleURL.appending(
|
||||||
component: outputCSSFilename, directoryHint: .notDirectory)
|
component: outputCSSFilename, directoryHint: .notDirectory)
|
||||||
|
|
||||||
print("Tailwind CSS Build Plugin: \(tailwindCSSURL.path)")
|
print("Tailwind CSS Build Plugin")
|
||||||
print("Tailwind CSS File: \(tailwindCSSURL.path)")
|
print("Tailwind CSS File: \(tailwindCSSURL.path)")
|
||||||
print("Source files: \n -\(sourceURLs.map(\.path).joined(separator: "\n -"))")
|
print("@source declarations: \(sourcePaths)")
|
||||||
|
print("Source files: \(sourceURLs.map(\.path))")
|
||||||
print("Output: \(outputURL.path)")
|
print("Output: \(outputURL.path)")
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue