Skip to content

Commit

Permalink
feat: 4bitcss build - including more icons ( Fixes #106 )
Browse files Browse the repository at this point in the history
  • Loading branch information
James Brundage committed Oct 27, 2024
1 parent a6d4a14 commit 5daa762
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Build/4bitcss.build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ if (-not (Test-Path $IncludesPath)) {
}

Export-4BitSVG -SVG https://raw.githubusercontent.com/feathericons/feather/master/icons/download.svg -Stroke "ansi6" -OutputPath (Join-Path $IncludesPath "download-icon.svg")
Export-4BitSVG -SVG https://raw.githubusercontent.com/feathericons/feather/master/icons/github.svg -Stroke "ansi6" -OutputPath (Join-Path $IncludesPath "github-icon.svg")
Export-4BitSVG -SVG https://raw.githubusercontent.com/feathericons/feather/master/icons/download-cloud.svg -Stroke "ansi6" -OutputPath (Join-Path $IncludesPath "download-cloud-icon.svg")
Export-4BitSVG -SVG https://raw.githubusercontent.com/feathericons/feather/master/icons/shuffle.svg -Stroke "ansi6" -OutputPath (Join-Path $IncludesPath "shuffle-icon.svg")
Export-4BitSVG -SVG https://raw.githubusercontent.com/feathericons/feather/master/icons/help-circle.svg -Stroke "ansi6" -OutputPath (Join-Path $IncludesPath "help-circle-icon.svg")
Expand All @@ -231,8 +232,10 @@ Export-4BitSVG -SVG https://raw.githubusercontent.com/feathericons/feather/maste
Get-Module 4bitcss |
Split-Path |
Join-Path -ChildPath Assets |
Get-ChildItem -Filter 4bitpreview.svg |
Copy-Item -Destination (Join-Path $IncludesPath "4bitpreview.svg") -Force -PassThru
Get-ChildItem -Filter 4bit*.svg |
Copy-Item -Destination {
(Join-Path $IncludesPath "$($_.Name).svg")
} -Force -PassThru

$defaultColorScheme = 'Konsolas'
@"
Expand Down

0 comments on commit 5daa762

Please sign in to comment.