Skip to content

Commit 9338097

Browse files
authored
fix: formatting of Code in the MacOS PKG docs (#7142)
1 parent 4583273 commit 9338097

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.changeset/heavy-buttons-thank.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"app-builder-lib": patch
3+
---
4+
5+
fix: formatting of Code in the MacOS PKG docs

docs/configuration/pkg.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The top-level [pkg](configuration.md#Configuration-pkg) key contains set of opti
2424
<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>
2525
</li>
2626
<li>
27-
<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>
27+
<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>
2828
</li>
2929
<li>
3030
<p><code id="PkgOptions-background">background</code> <a href="#PkgBackgroundOptions">PkgBackgroundOptions</a> | “undefined” - Options for the background image for the installer.</p>

packages/app-builder-lib/scheme.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4460,7 +4460,7 @@
44604460
]
44614461
},
44624462
"license": {
4463-
"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).",
4463+
"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).",
44644464
"type": [
44654465
"null",
44664466
"string"

packages/app-builder-lib/src/options/pkgOptions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export interface PkgOptions extends TargetSpecificOptions {
6363
readonly identity?: string | null
6464

6565
/**
66-
* 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).
66+
* 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).
6767
*/
6868
readonly license?: string | null
6969

0 commit comments

Comments
 (0)