Skip to content

Commit

Permalink
Fix font encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
FlamingTempura committed Apr 19, 2024
1 parent df8a141 commit f290cb0
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion bibtex-tidy.0
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME
BibTeX Tidy v1.11.0
BibTeX Tidy v1.12.0

SYNOPSIS
bibtex-tidy [infile] [-o outfile] [option...]
Expand Down
2 changes: 1 addition & 1 deletion bibtex-tidy.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ declare class QuotedNode {
constructor(parent: ConcatNode);
}
/**
* bibtex-tidy v1.11.0
* bibtex-tidy v1.12.0
* https://github.com/FlamingTempura/bibtex-tidy
*
* DO NOT EDIT THIS FILE. This file is automatically generated
Expand Down
2 changes: 1 addition & 1 deletion bibtex-tidy.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions bin/bibtex-tidy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,13 +309,15 @@ async function buildWebBundle() {
});

for (const file of outputFiles) {
let text = file.text;
if (file.path.endsWith('.js')) {
let text = file.text;
text = (await transpileForOldBrowsers(file, { minify: true })).code;
text = jsBanner.join('\n') + text;
text = await prettier.format(text, { parser: 'babel', printWidth: 400 });
await writeFile(file.path, text);
} else {
await writeFile(file.path, file.contents);
}
await writeFile(file.path, text);
}

console.timeEnd('Web bundle built');
Expand Down
Binary file modified docs/IBMPlexSans-Light-SATUMA4V.woff2
Binary file not shown.
Binary file modified docs/IBMPlexSans-Medium-ILA6RNXQ.woff2
Binary file not shown.
Binary file modified docs/Inconsolata-Regular-CEGDCP7X.woff2
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/bundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/__generated__/manPage.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/__generated__/optionsType.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/__generated__/version.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f290cb0

Please sign in to comment.