Skip to content

Commit

Permalink
Merge pull request #2259 from dolanmiu/feat/bump-prettier
Browse files Browse the repository at this point in the history
Bump prettier
  • Loading branch information
dolanmiu authored Jul 21, 2023
2 parents 63db9f2 + 8da57be commit 3b9f80f
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion demo/browser-demo.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<head>
<script src="../build/index.umd.js"></script>
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"inquirer": "^9.2.7",
"jsdom": "^22.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.3.1",
"prettier": "^3.0.0",
"ts-node": "^10.2.1",
"tsconfig-paths": "^4.0.0",
"typedoc": "^0.24.8",
Expand Down
6 changes: 5 additions & 1 deletion src/file/footer-wrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ export class FooterWrapper implements IViewWrapper {
private readonly footer: Footer;
private readonly relationships: Relationships;

public constructor(private readonly media: Media, referenceId: number, initContent?: XmlComponent) {
public constructor(
private readonly media: Media,
referenceId: number,
initContent?: XmlComponent,
) {
this.footer = new Footer(referenceId, initContent);
this.relationships = new Relationships();
}
Expand Down
6 changes: 5 additions & 1 deletion src/file/header-wrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ export class HeaderWrapper implements IViewWrapper {
private readonly header: Header;
private readonly relationships: Relationships;

public constructor(private readonly media: Media, referenceId: number, initContent?: XmlComponent) {
public constructor(
private readonly media: Media,
referenceId: number,
initContent?: XmlComponent,
) {
this.header = new Header(referenceId, initContent);
this.relationships = new Relationships();
}
Expand Down

0 comments on commit 3b9f80f

Please sign in to comment.