create-outsystems-astro 0.7.1 → 0.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,6 +6,7 @@ import { useState } from "preact/hooks";
6
6
  import AstroLogo from "../../images/astro.png?url";
7
7
  import OutSystemsLogo from "../../images/outsystems.png?url";
8
8
  import { Operation, setCounterCount } from "../../lib/setCounterCount";
9
+ import { setupStore } from "../../stores/demo";
9
10
 
10
11
  interface DemoProps {
11
12
  children: ComponentChildren;
@@ -28,14 +29,12 @@ export default function Demo({
28
29
  setCount((i) => setCounterCount(i, Operation.Subtract));
29
30
 
30
31
  const showParentMessage = () => {
31
- if (typeof window !== "undefined") {
32
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
33
- (window as any)[showMessage]?.(count);
34
- }
32
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
33
+ (window as any)[showMessage](count);
35
34
  };
36
35
 
37
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
38
- const nanoStoreValue = useStore((window as any).Stores?.["preactStore"]);
36
+ const store = setupStore("preactStore");
37
+ const nanoStoreValue = useStore(store);
39
38
 
40
39
  return (
41
40
  <>
@@ -5,6 +5,7 @@ import { useState } from "react";
5
5
  import AstroLogo from "../../images/astro.png?url";
6
6
  import OutSystemsLogo from "../../images/outsystems.png?url";
7
7
  import { Operation, setCounterCount } from "../../lib/setCounterCount";
8
+ import { setupStore } from "../../stores/demo";
8
9
 
9
10
  interface DemoProps {
10
11
  children: React.ReactNode;
@@ -29,8 +30,9 @@ export default function Demo({
29
30
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
30
31
  const showParentMessage = () => (window as any)[showMessage](count);
31
32
 
32
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
33
- const nanoStoreValue = useStore((window as any).Stores["reactStore"]);
33
+ const store = setupStore("reactStore");
34
+
35
+ const nanoStoreValue = useStore(store);
34
36
 
35
37
  return (
36
38
  <>
@@ -2,6 +2,7 @@
2
2
  import AstroLogo from "../../images/astro.png?url";
3
3
  import OutSystemsLogo from "../../images/outsystems.png?url";
4
4
  import { Operation, setCounterCount } from "../../lib/setCounterCount";
5
+ import { setupStore } from "../../stores/demo";
5
6
 
6
7
  export let initialCount: number;
7
8
  export let showMessage: string;
@@ -21,8 +22,7 @@
21
22
  (window as any)[showMessage](count);
22
23
  };
23
24
 
24
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
25
- const nanoStoreValue = (window as any).Stores["svelteStore"];
25
+ const nanoStoreValue = setupStore("svelteStore");
26
26
  </script>
27
27
 
28
28
  <slot name="header" />
@@ -5,6 +5,7 @@ import { useStore } from "@nanostores/vue";
5
5
  import AstroLogo from "../../images/astro.png?url";
6
6
  import OutSystemsLogo from "../../images/outsystems.png?url";
7
7
  import { Operation, setCounterCount } from "../../lib/setCounterCount";
8
+ import { setupStore } from "../../stores/demo";
8
9
 
9
10
  const props = defineProps<{
10
11
  initialCount: number;
@@ -26,8 +27,8 @@ const showParentMessage = () => {
26
27
  (window as any)[props.showMessage](count.value);
27
28
  };
28
29
 
29
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
30
- const nanoStoreValue = useStore((window as any).Stores["vueStore"]);
30
+ const store = setupStore("vueStore");
31
+ const nanoStoreValue = useStore(store);
31
32
  </script>
32
33
 
33
34
  <template>
@@ -34,7 +34,7 @@ const showMessage = "showMessage";
34
34
  </div>
35
35
  <hr />
36
36
  <DemoComponent
37
- client:visible
37
+ client:load
38
38
  initialCount={initialCount}
39
39
  showMessage={showMessage}
40
40
  />
@@ -8,12 +8,11 @@ const showMessage = "showMessage";
8
8
  <head>
9
9
  <link href={styles} rel="stylesheet" />
10
10
  <script>
11
- import { atom } from "nanostores";
11
+ import { setupStore } from "../../stores/demo";
12
+ setupStore("preactStore");
12
13
  window["showMessage"] = (count) => {
13
14
  document.getElementById("counter").textContent = count;
14
15
  };
15
- window.Stores = [];
16
- window.Stores["preactStore"] = atom("Test Value");
17
16
  document.addEventListener("DOMContentLoaded", function () {
18
17
  const input = document.getElementById("store");
19
18
  input.value = window.Stores["preactStore"].get();
@@ -8,12 +8,11 @@ const showMessage = "showMessage";
8
8
  <head>
9
9
  <link href={styles} rel="stylesheet" />
10
10
  <script>
11
- import { atom } from "nanostores";
11
+ import { setupStore } from "../../stores/demo";
12
+ setupStore("reactStore");
12
13
  window["showMessage"] = (count) => {
13
14
  document.getElementById("counter").textContent = count;
14
15
  };
15
- window.Stores = [];
16
- window.Stores["reactStore"] = atom("Test Value");
17
16
  document.addEventListener("DOMContentLoaded", function () {
18
17
  const input = document.getElementById("store");
19
18
  input.value = window.Stores["reactStore"].get();
@@ -8,12 +8,11 @@ const showMessage = "showMessage";
8
8
  <head>
9
9
  <link href={styles} rel="stylesheet" />
10
10
  <script>
11
- import { atom } from "nanostores";
11
+ import { setupStore } from "../../stores/demo";
12
+ setupStore("svelteStore");
12
13
  window["showMessage"] = (count) => {
13
14
  document.getElementById("counter").textContent = count;
14
15
  };
15
- window.Stores = [];
16
- window.Stores["svelteStore"] = atom("Test Value");
17
16
  document.addEventListener("DOMContentLoaded", function () {
18
17
  const input = document.getElementById("store");
19
18
  input.value = window.Stores["svelteStore"].get();
@@ -8,12 +8,11 @@ const showMessage = "showMessage";
8
8
  <head>
9
9
  <link href={styles} rel="stylesheet" />
10
10
  <script>
11
- import { atom } from "nanostores";
11
+ import { setupStore } from "../../stores/demo";
12
+ setupStore("vueStore");
12
13
  window["showMessage"] = (count) => {
13
14
  document.getElementById("counter").textContent = count;
14
15
  };
15
- window.Stores = [];
16
- window.Stores["vueStore"] = atom("Test Value");
17
16
  document.addEventListener("DOMContentLoaded", function () {
18
17
  const input = document.getElementById("store");
19
18
  input.value = window.Stores["vueStore"].get();
@@ -0,0 +1,14 @@
1
+ import { atom } from "nanostores";
2
+
3
+ export function setupStore(name: string) {
4
+ // @ts-expect-error: Stores does not exist on window
5
+ if (window.Stores === undefined) {
6
+ // @ts-expect-error: Stores does not exist on window
7
+ window.Stores = [];
8
+ // @ts-expect-error: Stores does not exist on window
9
+ window.Stores[name] = atom("Test Value");
10
+ }
11
+
12
+ // @ts-expect-error: Stores does not exist on window
13
+ return window.Stores[name];
14
+ }
@@ -185,7 +185,7 @@
185
185
  ajv "8.18.0"
186
186
  ajv-formats "3.0.1"
187
187
  jsonc-parser "3.3.1"
188
- picomatch "4.0.3"
188
+ picomatch "4.0.4"
189
189
  rxjs "7.8.2"
190
190
  source-map "0.7.6"
191
191
 
@@ -197,7 +197,7 @@
197
197
  ajv "8.18.0"
198
198
  ajv-formats "3.0.1"
199
199
  jsonc-parser "3.3.1"
200
- picomatch "4.0.3"
200
+ picomatch "4.0.4"
201
201
  rxjs "7.8.2"
202
202
  source-map "0.7.6"
203
203
 
@@ -312,7 +312,7 @@
312
312
  magic-string "0.30.21"
313
313
  mrmime "2.0.1"
314
314
  parse5-html-rewriting-stream "8.0.0"
315
- picomatch "4.0.3"
315
+ picomatch "4.0.4"
316
316
  piscina "5.1.4"
317
317
  rolldown "1.0.0-rc.4"
318
318
  sass "1.97.3"
@@ -421,17 +421,17 @@
421
421
  resolved "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.13.1.tgz"
422
422
  integrity sha512-f3FN83d2G/v32ipNClRKgYv30onQlMZX1vCeZMjPsMMPl1mDpmbl0+N5BYo4S/ofzqJyS5hvwacEo0CCVDn/Qg==
423
423
 
424
- "@astrojs/internal-helpers@0.7.5":
425
- version "0.7.5"
426
- resolved "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.7.5.tgz"
427
- integrity sha512-vreGnYSSKhAjFJCWAwe/CNhONvoc5lokxtRoZims+0wa3KbHBdPHSSthJsKxPd8d/aic6lWKpRTYGY/hsgK6EA==
424
+ "@astrojs/internal-helpers@0.7.6":
425
+ version "0.7.6"
426
+ resolved "https://registry.yarnpkg.com/@astrojs/internal-helpers/-/internal-helpers-0.7.6.tgz#36d92721f01c18c55928571ecf4ac9418987254c"
427
+ integrity sha512-GOle7smBWKfMSP8osUIGOlB5kaHdQLV3foCsf+5Q9Wsuu+C6Fs3Ez/ttXmhjZ1HkSgsogcM1RXSjjOVieHq16Q==
428
428
 
429
- "@astrojs/markdown-remark@6.3.10":
430
- version "6.3.10"
431
- resolved "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.3.10.tgz"
432
- integrity sha512-kk4HeYR6AcnzC4QV8iSlOfh+N8TZ3MEStxPyenyCtemqn8IpEATBFMTJcfrNW32dgpt6MY3oCkMM/Tv3/I4G3A==
429
+ "@astrojs/markdown-remark@6.3.11":
430
+ version "6.3.11"
431
+ resolved "https://registry.yarnpkg.com/@astrojs/markdown-remark/-/markdown-remark-6.3.11.tgz#1bf39e9f95896c2b7af3857ec0660440d5cd461b"
432
+ integrity sha512-hcaxX/5aC6lQgHeGh1i+aauvSwIT6cfyFjKWvExYSxUhZZBBdvCliOtu06gbQyhbe0pGJNoNmqNlQZ5zYUuIyQ==
433
433
  dependencies:
434
- "@astrojs/internal-helpers" "0.7.5"
434
+ "@astrojs/internal-helpers" "0.7.6"
435
435
  "@astrojs/prism" "3.3.0"
436
436
  github-slugger "^2.0.0"
437
437
  hast-util-from-html "^2.0.3"
@@ -445,8 +445,8 @@
445
445
  remark-parse "^11.0.0"
446
446
  remark-rehype "^11.1.2"
447
447
  remark-smartypants "^3.0.2"
448
- shiki "^3.19.0"
449
- smol-toml "^1.5.2"
448
+ shiki "^3.21.0"
449
+ smol-toml "^1.6.0"
450
450
  unified "^11.0.5"
451
451
  unist-util-remove-position "^5.0.0"
452
452
  unist-util-visit "^5.0.0"
@@ -3534,14 +3534,14 @@ astro-eslint-parser@^1.3.0:
3534
3534
  is-glob "^4.0.3"
3535
3535
  semver "^7.3.8"
3536
3536
 
3537
- astro@^5.18.0:
3538
- version "5.18.0"
3539
- resolved "https://registry.npmjs.org/astro/-/astro-5.18.0.tgz"
3540
- integrity sha512-CHiohwJIS4L0G6/IzE1Fx3dgWqXBCXus/od0eGUfxrZJD2um2pE7ehclMmgL/fXqbU7NfE1Ze2pq34h2QaA6iQ==
3537
+ astro@^5.18.1:
3538
+ version "5.18.1"
3539
+ resolved "https://registry.yarnpkg.com/astro/-/astro-5.18.1.tgz#7ab7f37ab14b8e6cf03cef706658029e7f96a0c2"
3540
+ integrity sha512-m4VWilWZ+Xt6NPoYzC4CgGZim/zQUO7WFL0RHCH0AiEavF1153iC3+me2atDvXpf/yX4PyGUeD8wZLq1cirT3g==
3541
3541
  dependencies:
3542
3542
  "@astrojs/compiler" "^2.13.0"
3543
- "@astrojs/internal-helpers" "0.7.5"
3544
- "@astrojs/markdown-remark" "6.3.10"
3543
+ "@astrojs/internal-helpers" "0.7.6"
3544
+ "@astrojs/markdown-remark" "6.3.11"
3545
3545
  "@astrojs/telemetry" "3.3.0"
3546
3546
  "@capsizecss/unpack" "^4.0.0"
3547
3547
  "@oslojs/encoding" "^1.1.0"
@@ -3641,7 +3641,7 @@ bail@^2.0.0:
3641
3641
 
3642
3642
  balanced-match@^1.0.0:
3643
3643
  version "1.0.2"
3644
- resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
3644
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
3645
3645
  integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
3646
3646
 
3647
3647
  balanced-match@^4.0.2:
@@ -3725,24 +3725,24 @@ boxen@8.0.1:
3725
3725
  wrap-ansi "^9.0.0"
3726
3726
 
3727
3727
  brace-expansion@^1.1.7:
3728
- version "1.1.12"
3729
- resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz"
3730
- integrity sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==
3728
+ version "1.1.13"
3729
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.13.tgz#d37875c01dc9eff988dd49d112a57cb67b54efe6"
3730
+ integrity sha512-9ZLprWS6EENmhEOpjCYW2c8VkmOvckIJZfkr7rBW6dObmfgJ/L1GpSYW5Hpo9lDz4D1+n0Ckz8rU7FwHDQiG/w==
3731
3731
  dependencies:
3732
3732
  balanced-match "^1.0.0"
3733
3733
  concat-map "0.0.1"
3734
3734
 
3735
3735
  brace-expansion@^2.0.2:
3736
- version "2.0.2"
3737
- resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz"
3738
- integrity sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==
3736
+ version "2.0.3"
3737
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.3.tgz#0493338bdd58e319b1039c67cf7ee439892c01d9"
3738
+ integrity sha512-MCV/fYJEbqx68aE58kv2cA/kiky1G8vux3OR6/jbS+jIMe/6fJWa0DTzJU7dqijOWYwHi1t29FlfYI9uytqlpA==
3739
3739
  dependencies:
3740
3740
  balanced-match "^1.0.0"
3741
3741
 
3742
3742
  brace-expansion@^5.0.2:
3743
- version "5.0.4"
3744
- resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.4.tgz"
3745
- integrity sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==
3743
+ version "5.0.5"
3744
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-5.0.5.tgz#dcc3a37116b79f3e1b46db994ced5d570e930fdb"
3745
+ integrity sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==
3746
3746
  dependencies:
3747
3747
  balanced-match "^4.0.2"
3748
3748
 
@@ -4004,7 +4004,7 @@ common-ancestor-path@^1.0.1:
4004
4004
 
4005
4005
  concat-map@0.0.1:
4006
4006
  version "0.0.1"
4007
- resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
4007
+ resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
4008
4008
  integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
4009
4009
 
4010
4010
  config-chain@^1.1.13:
@@ -5293,10 +5293,10 @@ flat-cache@^4.0.0:
5293
5293
  flatted "^3.2.9"
5294
5294
  keyv "^4.5.4"
5295
5295
 
5296
- flatted@^3.2.9, flatted@^3.4.0:
5297
- version "3.4.1"
5298
- resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.4.1.tgz#84ccd9579e76e9cc0d246c11d8be0beb019143e6"
5299
- integrity sha512-IxfVbRFVlV8V/yRaGzk0UVIcsKKHMSfYw66T/u4nTwlWteQePsxe//LjudR1AMX4tZW3WFCh3Zqa/sjlqpbURQ==
5296
+ flatted@^3.2.9, flatted@^3.4.2:
5297
+ version "3.4.2"
5298
+ resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.4.2.tgz#f5c23c107f0f37de8dbdf24f13722b3b98d52726"
5299
+ integrity sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==
5300
5300
 
5301
5301
  flattie@^1.1.1:
5302
5302
  version "1.1.1"
@@ -5553,10 +5553,10 @@ graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0,
5553
5553
  resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz"
5554
5554
  integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
5555
5555
 
5556
- h3@^1.15.5:
5557
- version "1.15.5"
5558
- resolved "https://registry.npmjs.org/h3/-/h3-1.15.5.tgz"
5559
- integrity sha512-xEyq3rSl+dhGX2Lm0+eFQIAzlDN6Fs0EcC4f7BNUmzaRX/PTzeuM+Tr2lHB8FoXggsQIeXLj8EDVgs5ywxyxmg==
5556
+ h3@^1.15.5, h3@^1.15.6:
5557
+ version "1.15.9"
5558
+ resolved "https://registry.yarnpkg.com/h3/-/h3-1.15.9.tgz#ee3a480674b2e35106155544cc0a6de69a6dc14f"
5559
+ integrity sha512-H7UPnyIupUOYUQu7f2x7ABVeMyF/IbJjqn20WSXpMdnQB260luADUkSgJU7QTWLutq8h3tUayMQ1DdbSYX5LkA==
5560
5560
  dependencies:
5561
5561
  cookie-es "^1.2.2"
5562
5562
  crossws "^0.3.5"
@@ -5568,10 +5568,10 @@ h3@^1.15.5:
5568
5568
  ufo "^1.6.3"
5569
5569
  uncrypto "^0.1.3"
5570
5570
 
5571
- happy-dom@^20.8.3:
5572
- version "20.8.3"
5573
- resolved "https://registry.yarnpkg.com/happy-dom/-/happy-dom-20.8.3.tgz#aa59a13c0e43c48819190d913ab5e36800e87431"
5574
- integrity sha512-lMHQRRwIPyJ70HV0kkFT7jH/gXzSI7yDkQFe07E2flwmNDFoWUTRMKpW2sglsnpeA7b6S2TJPp98EbQxai8eaQ==
5571
+ happy-dom@^20.8.8:
5572
+ version "20.8.8"
5573
+ resolved "https://registry.yarnpkg.com/happy-dom/-/happy-dom-20.8.8.tgz#ad87a83340161943d7f7425dae9ca237b6cd4bc7"
5574
+ integrity sha512-5/F8wxkNxYtsN0bXfMwIyNLZ9WYsoOYPbmoluqVJqv8KBUbcyKZawJ7uYK4WTX8IHBLYv+VXIwfeNDPy1oKMwQ==
5575
5575
  dependencies:
5576
5576
  "@types/node" ">=20.0.0"
5577
5577
  "@types/whatwg-mimetype" "^3.0.2"
@@ -7800,10 +7800,10 @@ path-scurry@^2.0.2:
7800
7800
  lru-cache "^11.0.0"
7801
7801
  minipass "^7.1.2"
7802
7802
 
7803
- path-to-regexp@^8.0.0:
7804
- version "8.3.0"
7805
- resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.3.0.tgz"
7806
- integrity sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==
7803
+ path-to-regexp@^8.0.0, path-to-regexp@^8.4.0:
7804
+ version "8.4.0"
7805
+ resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-8.4.0.tgz#8e98fcd94826aff01a90c544ef74ffbaca3a78ed"
7806
+ integrity sha512-PuseHIvAnz3bjrM2rGJtSgo1zjgxapTLZ7x2pjhzWwlp4SJQgK3f3iZIQwkpEnBaKz6seKBADpM4B4ySkuYypg==
7807
7807
 
7808
7808
  pathe@^2.0.3:
7809
7809
  version "2.0.3"
@@ -7825,15 +7825,15 @@ picocolors@1.1.1, picocolors@^1.1.1:
7825
7825
  resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz"
7826
7826
  integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
7827
7827
 
7828
- picomatch@4.0.3, picomatch@^4.0.2, picomatch@^4.0.3:
7829
- version "4.0.3"
7830
- resolved "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz"
7831
- integrity sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==
7828
+ picomatch@4.0.4, picomatch@^4.0.2, picomatch@^4.0.3:
7829
+ version "4.0.4"
7830
+ resolved "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz"
7831
+ integrity sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==
7832
7832
 
7833
7833
  picomatch@^2.0.4, picomatch@^2.2.2, picomatch@^2.3.1:
7834
- version "2.3.1"
7835
- resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"
7836
- integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
7834
+ version "2.3.2"
7835
+ resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz"
7836
+ integrity sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==
7837
7837
 
7838
7838
  piscina@5.1.4:
7839
7839
  version "5.1.4"
@@ -8591,7 +8591,7 @@ shebang-regex@^3.0.0:
8591
8591
  resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
8592
8592
  integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
8593
8593
 
8594
- shiki@^3.19.0, shiki@^3.21.0:
8594
+ shiki@^3.21.0:
8595
8595
  version "3.23.0"
8596
8596
  resolved "https://registry.npmjs.org/shiki/-/shiki-3.23.0.tgz"
8597
8597
  integrity sha512-55Dj73uq9ZXL5zyeRPzHQsK7Nbyt6Y10k5s7OjuFZGMhpp4r/rsLBH0o/0fstIzX1Lep9VxefWljK/SKCzygIA==
@@ -8715,10 +8715,10 @@ smart-buffer@^4.2.0:
8715
8715
  resolved "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz"
8716
8716
  integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==
8717
8717
 
8718
- smol-toml@^1.5.2, smol-toml@^1.6.0:
8719
- version "1.6.0"
8720
- resolved "https://registry.npmjs.org/smol-toml/-/smol-toml-1.6.0.tgz"
8721
- integrity sha512-4zemZi0HvTnYwLfrpk/CF9LOd9Lt87kAt50GnqhMpyF9U3poDAP2+iukq2bZsO/ufegbYehBkqINbsWxj4l4cw==
8718
+ smol-toml@^1.6.0, smol-toml@^1.6.1:
8719
+ version "1.6.1"
8720
+ resolved "https://registry.yarnpkg.com/smol-toml/-/smol-toml-1.6.1.tgz#4fceb5f7c4b86c2544024ef686e12ff0983465be"
8721
+ integrity sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==
8722
8722
 
8723
8723
  socks-proxy-agent@^8.0.3:
8724
8724
  version "8.0.5"
@@ -9880,14 +9880,14 @@ yallist@^5.0.0:
9880
9880
  integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==
9881
9881
 
9882
9882
  yaml@^1.10.2:
9883
- version "1.10.2"
9884
- resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz"
9885
- integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
9883
+ version "1.10.3"
9884
+ resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.3.tgz"
9885
+ integrity sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA==
9886
9886
 
9887
9887
  yaml@^2.2.2:
9888
- version "2.8.2"
9889
- resolved "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz"
9890
- integrity sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==
9888
+ version "2.8.3"
9889
+ resolved "https://registry.npmjs.org/yaml/-/yaml-2.8.3.tgz"
9890
+ integrity sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==
9891
9891
 
9892
9892
  yargs-parser@^21.1.1:
9893
9893
  version "21.1.1"
File without changes