Skip to content

Commit 932e21c

Browse files
committed
build-artifacts
1 parent da2076b commit 932e21c

File tree

7 files changed

+184
-23
lines changed

7 files changed

+184
-23
lines changed

src/resources/editor/tools/vs-code.mjs

Lines changed: 43 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9428,10 +9428,27 @@ var require_yaml_intelligence_resources = __commonJS({
94289428
description: "Enable Google Analytics for this website"
94299429
},
94309430
"plausible-analytics": {
9431-
schema: "string",
9431+
anyOf: [
9432+
"string",
9433+
{
9434+
object: {
9435+
closed: true,
9436+
properties: {
9437+
path: {
9438+
path: {
9439+
description: "Path to a file containing the Plausible Analytics script snippet"
9440+
}
9441+
}
9442+
},
9443+
required: [
9444+
"path"
9445+
]
9446+
}
9447+
}
9448+
],
94329449
description: {
9433-
short: "Enable Plausible Analytics for this website",
9434-
long: "Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\nTo get your script snippet:\n\n1. Log into your Plausible account at <https://plausible.io>\n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Paste it here\n\nFor more information, see <https://plausible.io/docs/plausible-script>\n"
9450+
short: "Enable Plausible Analytics for this website by providing a script snippet or path to snippet file",
9451+
long: 'Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n <script async src="https://plausible.io/js/script.js"><\/script>\n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at <https://plausible.io>\n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see <https://plausible.io/docs/plausible-script>\n'
94359452
}
94369453
},
94379454
announcement: {
@@ -21520,6 +21537,11 @@ var require_yaml_intelligence_resources = __commonJS({
2152021537
short: "The version number of Google Analytics to use.",
2152121538
long: "The version number of Google Analytics to use."
2152221539
},
21540+
{
21541+
short: "Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file",
21542+
long: "Enable Plausible Analytics for this website by pasting the script\nsnippet from your Plausible dashboard, or by providing a path to a file\ncontaining the snippet.\nPlausible is a privacy-friendly, GDPR-compliant web analytics service\nthat does not use cookies and does not require cookie consent.\n<strong>Option 1: Inline snippet</strong>"
21543+
},
21544+
"Path to a file containing the Plausible Analytics script snippet",
2152321545
"Provides an announcement displayed at the top of the page.",
2152421546
"The content of the announcement",
2152521547
"Whether this announcement may be dismissed by the user.",
@@ -21681,6 +21703,11 @@ var require_yaml_intelligence_resources = __commonJS({
2168121703
short: "The version number of Google Analytics to use.",
2168221704
long: "The version number of Google Analytics to use."
2168321705
},
21706+
{
21707+
short: "Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file",
21708+
long: "Enable Plausible Analytics for this website by pasting the script\nsnippet from your Plausible dashboard, or by providing a path to a file\ncontaining the snippet.\nPlausible is a privacy-friendly, GDPR-compliant web analytics service\nthat does not use cookies and does not require cookie consent.\n<strong>Option 1: Inline snippet</strong>"
21709+
},
21710+
"Path to a file containing the Plausible Analytics script snippet",
2168421711
"Provides an announcement displayed at the top of the page.",
2168521712
"The content of the announcement",
2168621713
"Whether this announcement may be dismissed by the user.",
@@ -24067,6 +24094,11 @@ var require_yaml_intelligence_resources = __commonJS({
2406724094
short: "The version number of Google Analytics to use.",
2406824095
long: "The version number of Google Analytics to use."
2406924096
},
24097+
{
24098+
short: "Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file",
24099+
long: "Enable Plausible Analytics for this website by pasting the script\nsnippet from your Plausible dashboard, or by providing a path to a file\ncontaining the snippet.\nPlausible is a privacy-friendly, GDPR-compliant web analytics service\nthat does not use cookies and does not require cookie consent.\n<strong>Option 1: Inline snippet</strong>"
24100+
},
24101+
"Path to a file containing the Plausible Analytics script snippet",
2407024102
"Provides an announcement displayed at the top of the page.",
2407124103
"The content of the announcement",
2407224104
"Whether this announcement may be dismissed by the user.",
@@ -24417,6 +24449,11 @@ var require_yaml_intelligence_resources = __commonJS({
2441724449
short: "The version number of Google Analytics to use.",
2441824450
long: "The version number of Google Analytics to use."
2441924451
},
24452+
{
24453+
short: "Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file",
24454+
long: "Enable Plausible Analytics for this website by pasting the script\nsnippet from your Plausible dashboard, or by providing a path to a file\ncontaining the snippet.\nPlausible is a privacy-friendly, GDPR-compliant web analytics service\nthat does not use cookies and does not require cookie consent.\n<strong>Option 1: Inline snippet</strong>"
24455+
},
24456+
"Path to a file containing the Plausible Analytics script snippet",
2442024457
"Provides an announcement displayed at the top of the page.",
2442124458
"The content of the announcement",
2442224459
"Whether this announcement may be dismissed by the user.",
@@ -24940,12 +24977,12 @@ var require_yaml_intelligence_resources = __commonJS({
2494024977
mermaid: "%%"
2494124978
},
2494224979
"handlers/mermaid/schema.yml": {
24943-
_internalId: 197475,
24980+
_internalId: 197491,
2494424981
type: "object",
2494524982
description: "be an object",
2494624983
properties: {
2494724984
"mermaid-format": {
24948-
_internalId: 197467,
24985+
_internalId: 197483,
2494924986
type: "enum",
2495024987
enum: [
2495124988
"png",
@@ -24961,7 +24998,7 @@ var require_yaml_intelligence_resources = __commonJS({
2496124998
exhaustiveCompletions: true
2496224999
},
2496325000
theme: {
24964-
_internalId: 197474,
25001+
_internalId: 197490,
2496525002
type: "anyOf",
2496625003
anyOf: [
2496725004
{

src/resources/editor/tools/yaml/all-schema-definitions.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/resources/editor/tools/yaml/web-worker.js

Lines changed: 43 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)