Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get weights for roboto mono #851

Merged
merged 6 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<RestorePackagesWithLockFile>false</RestorePackagesWithLockFile>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
</PropertyGroup>
<ItemGroup>
Expand Down
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 19.1.1

* Fix code rendering on firefox. [#851](https://github.com/fsprojects/FSharp.Formatting/pull/851)

## 19.1.0

* Only reload css file when changed. [#845](https://github.com/fsprojects/FSharp.Formatting/pull/845)
Expand Down
8 changes: 4 additions & 4 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pipeline "CI" {
run $"dotnet build {solutionFile} --configuration {configuration}"
}

stage "NuGet" { run $"dotnet pack {solutionFile} --output {artifactsDir} --configuration {configuration}" }
stage "NuGet" { run $"dotnet pack {solutionFile} --output \"{artifactsDir}\" --configuration {configuration}" }

stage "Tests" {
run
Expand All @@ -91,10 +91,10 @@ pipeline "CI" {
// Τhe tool has been uninstalled when the
// artifacts folder was removed in the Clean stage.
run
$"dotnet tool install --no-cache --version %s{release.NugetVersion} --add-source %s{artifactsDir} --tool-path %s{artifactsDir} fsdocs-tool"
$"dotnet tool install --no-cache --version %s{release.NugetVersion} --add-source \"%s{artifactsDir}\" --tool-path \"%s{artifactsDir}\" fsdocs-tool"

run $"{fsdocTool} build --strict --clean --properties Configuration=Release"
run $"dotnet tool uninstall fsdocs-tool --tool-path %s{artifactsDir}"
run $"\"{fsdocTool}\" build --strict --clean --properties Configuration=Release"
run $"dotnet tool uninstall fsdocs-tool --tool-path \"%s{artifactsDir}\""
run (fun _ -> Shell.cleanDir ".packages")
}

Expand Down
2 changes: 1 addition & 1 deletion docs/content/fsdocs-default.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import url('https://fonts.googleapis.com/css2?family=Hind+Vadodara&family=Roboto+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind+Vadodara&family=Roboto+Mono:wght@400;500;600&display=swap');
/*--------------------------------------------------------------------------
Formatting for page & standard document content
/*--------------------------------------------------------------------------*/
Expand Down
3 changes: 1 addition & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"sdk": {
"version": "7.0.400",
"rollForward": "minor"
"version": "7.0.400"
}
}
116 changes: 0 additions & 116 deletions src/FSharp.Formatting.ApiDocs/packages.lock.json

This file was deleted.

6 changes: 0 additions & 6 deletions src/FSharp.Formatting.CSharpFormat/packages.lock.json

This file was deleted.

94 changes: 0 additions & 94 deletions src/FSharp.Formatting.CodeFormat/packages.lock.json

This file was deleted.

87 changes: 0 additions & 87 deletions src/FSharp.Formatting.Common/packages.lock.json

This file was deleted.

Loading
Loading