Skip to content

Commit

Permalink
fix: formatting of Code in the MacOS PKG docs (#7142)
Browse files Browse the repository at this point in the history
  • Loading branch information
hrueger committed Sep 23, 2022
1 parent 4583273 commit 9338097
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/heavy-buttons-thank.md
@@ -0,0 +1,5 @@
---
"app-builder-lib": patch
---

fix: formatting of Code in the MacOS PKG docs
2 changes: 1 addition & 1 deletion docs/configuration/pkg.md
Expand Up @@ -24,7 +24,7 @@ The top-level [pkg](configuration.md#Configuration-pkg) key contains set of opti
<p><code id="PkgOptions-identity">identity</code> String | “undefined” - The name of certificate to use when signing. Consider using environment variables <a href="/code-signing">CSC_LINK or CSC_NAME</a> instead of specifying this option.</p>
</li>
<li>
<p><code id="PkgOptions-license">license</code> String | “undefined” - The path to EULA license file. Defaults to <code>license.txt</code> or <code>eula.txt</code> (or uppercase variants). In addition to <code>txt, </code>rtf<code>and</code>html<code>supported (don't forget to use</code>target=&quot;_blank&quot;` for links).</p>
<p><code id="PkgOptions-license">license</code> String | “undefined” - The path to EULA license file. Defaults to <code>license.txt</code> or <code>eula.txt</code> (or uppercase variants). In addition to <code>txt</code>, <code>rtf</code> and <code>html</code> supported (dont forget to use <code>target=&quot;_blank&quot;</code> for links).</p>
</li>
<li>
<p><code id="PkgOptions-background">background</code> <a href="#PkgBackgroundOptions">PkgBackgroundOptions</a> | “undefined” - Options for the background image for the installer.</p>
Expand Down
2 changes: 1 addition & 1 deletion packages/app-builder-lib/scheme.json
Expand Up @@ -4460,7 +4460,7 @@
]
},
"license": {
"description": "The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). In addition to `txt, `rtf` and `html` supported (don't forget to use `target=\"_blank\"` for links).",
"description": "The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). In addition to `txt`, `rtf` and `html` supported (don't forget to use `target=\"_blank\"` for links).",
"type": [
"null",
"string"
Expand Down
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/options/pkgOptions.ts
Expand Up @@ -63,7 +63,7 @@ export interface PkgOptions extends TargetSpecificOptions {
readonly identity?: string | null

/**
* The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). In addition to `txt, `rtf` and `html` supported (don't forget to use `target="_blank"` for links).
* The path to EULA license file. Defaults to `license.txt` or `eula.txt` (or uppercase variants). In addition to `txt`, `rtf` and `html` supported (don't forget to use `target="_blank"` for links).
*/
readonly license?: string | null

Expand Down

0 comments on commit 9338097

Please sign in to comment.