Skip to content

Commit f2a1f1e

Browse files
authoredOct 19, 2023
docs: add snap base core22 as an option (#7813)
1 parent 7c7db83 commit f2a1f1e

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed
 

‎.changeset/bright-toys-camp.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"app-builder-lib": patch
3+
---
4+
5+
minor addition to docs for snap. add snap recommended core22 option.

‎docs/configuration/snap.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The top-level [snap](configuration.md#Configuration-snap) key contains set of op
33
<!-- do not edit. start of generated block -->
44
<ul>
55
<li>
6-
<p><code id="SnapOptions-base">base</code> String | “undefined” - A snap of type base to be used as the execution environment for this snap. Examples: <code>core</code>, <code>core18</code>, <code>core20</code>. Defaults to <code>core18</code></p>
6+
<p><code id="SnapOptions-base">base</code> String | “undefined” - A snap of type base to be used as the execution environment for this snap. Examples: <code>core</code>, <code>core18</code>, <code>core20</code>, <code>core22</code>. Defaults to <code>core18</code></p>
77
</li>
88
<li>
99
<p><code id="SnapOptions-confinement">confinement</code> = <code>strict</code> “devmode” | “strict” | “classic” | “undefined” - The type of <a href="https://snapcraft.io/docs/reference/confinement">confinement</a> supported by the snap.</p>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -5295,7 +5295,7 @@
52955295
"type": "boolean"
52965296
},
52975297
"base": {
5298-
"description": "A snap of type base to be used as the execution environment for this snap. Examples: `core`, `core18`, `core20`. Defaults to `core18`",
5298+
"description": "A snap of type base to be used as the execution environment for this snap. Examples: `core`, `core18`, `core20`, `core22`. Defaults to `core18`",
52995299
"type": [
53005300
"null",
53015301
"string"

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { CommonLinuxOptions } from "./linuxOptions"
33

44
export interface SnapOptions extends CommonLinuxOptions, TargetSpecificOptions {
55
/**
6-
* A snap of type base to be used as the execution environment for this snap. Examples: `core`, `core18`, `core20`. Defaults to `core18`
6+
* A snap of type base to be used as the execution environment for this snap. Examples: `core`, `core18`, `core20`, `core22`. Defaults to `core18`
77
*/
88
readonly base?: string | null
99

0 commit comments

Comments
 (0)
Please sign in to comment.