Skip to content

Commit 5277354

Browse files
authoredMar 11, 2024··
chore(deps): update dependency typescript-json-schema to v0.63.0 (#8119)
1 parent 031d7d5 commit 5277354

File tree

8 files changed

+114
-627
lines changed

8 files changed

+114
-627
lines changed
 

‎.changeset/brave-toys-fly.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"app-builder-lib": patch
3+
---
4+
5+
chore(deps): update dependency typescript-json-schema to v0.63.0

‎docs/configuration/configuration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Env file `electron-builder.env` in the current dir ([example](https://github.com
9393
<p><code id="Configuration-npmRebuild">npmRebuild</code> = <code>true</code> Boolean - Whether to <a href="https://docs.npmjs.com/cli/rebuild">rebuild</a> native dependencies before starting to package the app.</p>
9494
</li>
9595
<li>
96-
<p><code id="Configuration-nativeRebuilder">nativeRebuilder</code> = <code>legacy</code> “legacy” | “sequential” | “parallel” | “undefined” - Use <code>legacy</code> app-builder binary for installing native dependencies, or @electron/rebuild in <code>sequential</code> or <code>parallel</code> compilation modes.</p>
96+
<p><code id="Configuration-nativeRebuilder">nativeRebuilder</code> = <code>legacy</code> “legacy” | “sequential” | “parallel” | “undefined” - Use <code>legacy</code> app-builder binary for installing native dependencies, or <code>@electron/rebuild</code> in <code>sequential</code> or <code>parallel</code> compilation modes.</p>
9797
</li>
9898
<li>
9999
<p><code id="Configuration-buildNumber">buildNumber</code> String | “undefined” - The build number. Maps to the <code>--iteration</code> flag for builds using FPM on Linux. If not defined, then it will fallback to <code>BUILD_NUMBER</code> or <code>TRAVIS_BUILD_NUMBER</code> or <code>APPVEYOR_BUILD_NUMBER</code> or <code>CIRCLE_BUILD_NUM</code> or <code>BUILD_BUILDNUMBER</code> or <code>CI_PIPELINE_IID</code> env.</p>

‎docs/configuration/mac.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ The top-level [mac](configuration.md#Configuration-mac) key contains set of opti
8080
<p><code id="MacConfiguration-hardenedRuntime">hardenedRuntime</code> = <code>true</code> Boolean - Whether your app has to be signed with hardened runtime.</p>
8181
</li>
8282
<li>
83-
<p><code id="MacConfiguration-gatekeeperAssess">gatekeeperAssess</code> = <code>false</code> Boolean - Whether to let @electron/osx-sign validate the signing or not.</p>
83+
<p><code id="MacConfiguration-gatekeeperAssess">gatekeeperAssess</code> = <code>false</code> Boolean - Whether to let <code>@electron/osx-sign</code> validate the signing or not.</p>
8484
</li>
8585
<li>
86-
<p><code id="MacConfiguration-strictVerify">strictVerify</code> = <code>true</code> Boolean - Whether to let @electron/osx-sign verify the contents or not.</p>
86+
<p><code id="MacConfiguration-strictVerify">strictVerify</code> = <code>true</code> Boolean - Whether to let <code>@electron/osx-sign</code> verify the contents or not.</p>
8787
</li>
8888
<li>
89-
<p><code id="MacConfiguration-preAutoEntitlements">preAutoEntitlements</code> = <code>true</code> Boolean - Whether to enable entitlements automation from @electron/osx-sign.</p>
89+
<p><code id="MacConfiguration-preAutoEntitlements">preAutoEntitlements</code> = <code>true</code> Boolean - Whether to enable entitlements automation from <code>@electron/osx-sign</code>.</p>
9090
</li>
9191
<li>
9292
<p><code id="MacConfiguration-signIgnore">signIgnore</code> Array&lt;String&gt; | String | “undefined” - Regex or an array of regex’s that signal skipping signing a file.</p>

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"source-map-support": "0.5.21",
7070
"ts-jsdoc": "3.2.2",
7171
"typescript": "5.4.2",
72-
"typescript-json-schema": "0.51.0",
72+
"typescript-json-schema": "0.63.0",
7373
"v8-compile-cache": "2.3.0"
7474
},
7575
"engines": {

‎packages/app-builder-lib/scheme.json

+78-592
Large diffs are not rendered by default.

‎packages/app-builder-lib/src/configuration.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export interface Configuration extends PlatformSpecificBuildOptions {
132132
*/
133133
readonly npmRebuild?: boolean
134134
/**
135-
* Use `legacy` app-builder binary for installing native dependencies, or @electron/rebuild in `sequential` or `parallel` compilation modes.
135+
* Use `legacy` app-builder binary for installing native dependencies, or `@electron/rebuild` in `sequential` or `parallel` compilation modes.
136136
* @default legacy
137137
*/
138138
readonly nativeRebuilder?: "legacy" | "sequential" | "parallel" | null

‎packages/app-builder-lib/src/options/macOptions.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -154,19 +154,19 @@ export interface MacConfiguration extends PlatformSpecificBuildOptions {
154154
readonly hardenedRuntime?: boolean
155155

156156
/**
157-
* Whether to let @electron/osx-sign validate the signing or not.
157+
* Whether to let `@electron/osx-sign` validate the signing or not.
158158
* @default false
159159
*/
160160
readonly gatekeeperAssess?: boolean
161161

162162
/**
163-
* Whether to let @electron/osx-sign verify the contents or not.
163+
* Whether to let `@electron/osx-sign` verify the contents or not.
164164
* @default true
165165
*/
166166
readonly strictVerify?: boolean
167167

168168
/**
169-
* Whether to enable entitlements automation from @electron/osx-sign.
169+
* Whether to enable entitlements automation from `@electron/osx-sign`.
170170
* @default true
171171
*/
172172
readonly preAutoEntitlements?: boolean

‎pnpm-lock.yaml

+22-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.