create-outsystems-astro 0.10.0 → 0.11.0
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.
- package/bin/cli.js +7 -2
- package/integrations/bun.lock +25 -0
- package/integrations/deno.lock +51 -4
- package/integrations/package-lock.json +118 -90
- package/integrations/package.json +5 -2
- package/integrations/pnpm-lock.yaml +70 -7
- package/integrations/tsconfig.json +2 -1
- package/integrations/twig/client.ts +34 -0
- package/integrations/twig/index.ts +185 -0
- package/integrations/twig/server.ts +54 -0
- package/integrations/yarn.lock +71 -1
- package/package.json +1 -1
- package/template/AGENTS.md +47 -0
- package/template/astro.config.mjs +4 -0
- package/template/bun.lock +17 -65
- package/template/deno.lock +36 -30
- package/template/package-lock.json +98 -201
- package/template/package.json +3 -1
- package/template/pnpm-lock.yaml +42 -0
- package/template/src/env.d.ts +6 -0
- package/template/src/framework/twig/Demo.twig +100 -0
- package/template/src/framework/twig/Store.twig +45 -0
- package/template/src/images/twig.png +0 -0
- package/template/src/pages/multi/store.astro +10 -0
- package/template/src/pages/twig/twig-demo.astro +65 -0
- package/template/src/stores/framework.ts +1 -0
- package/template/test/e2e/twig/twig-demo.spec.ts +36 -0
- package/template/test/integration/twig/Demo.test.ts +84 -0
- package/template/vitest.config.ts +9 -0
- package/template/yarn.lock +52 -5
package/bin/cli.js
CHANGED
|
@@ -21,6 +21,7 @@ const FRAMEWORKS = [
|
|
|
21
21
|
{ title: "React", value: "react" },
|
|
22
22
|
{ title: "SolidJS", value: "solid" },
|
|
23
23
|
{ title: "Svelte", value: "svelte" },
|
|
24
|
+
{ title: "Twig", value: "twig" },
|
|
24
25
|
{ title: "Vue", value: "vue" }
|
|
25
26
|
];
|
|
26
27
|
|
|
@@ -43,6 +44,8 @@ async function main() {
|
|
|
43
44
|
initial: "outsystems-astro-app"
|
|
44
45
|
});
|
|
45
46
|
|
|
47
|
+
await buildIntegrations();
|
|
48
|
+
|
|
46
49
|
const targetDir = path.resolve(process.cwd(), response.projectName);
|
|
47
50
|
const templateDir = path.join(__dirname, "..", "template");
|
|
48
51
|
|
|
@@ -50,8 +53,6 @@ async function main() {
|
|
|
50
53
|
console.log("📦 Copying template...");
|
|
51
54
|
copyDir(templateDir, targetDir);
|
|
52
55
|
|
|
53
|
-
buildIntegrations();
|
|
54
|
-
|
|
55
56
|
const packageManager = packageInstall(targetDir);
|
|
56
57
|
|
|
57
58
|
selectWorkflowTestCI(targetDir, packageManager);
|
|
@@ -273,6 +274,10 @@ function updateMultiAstroPage(projectDir, selectedFrameworks) {
|
|
|
273
274
|
import: /import\s+SvelteStore\s+from\s+['"].*?svelte\/Store\.svelte['"];?\s*\n?/g,
|
|
274
275
|
component: /<SvelteStore\s+client:only="svelte"\s*\/>\s*\n?/g
|
|
275
276
|
},
|
|
277
|
+
twig: {
|
|
278
|
+
import: /import\s+(?:TwigStore\s+from\s+['"].*?twig\/Store\.twig['"]|TwigLogo\s+from\s+['"].*?twig\.png\?url['"]);?\s*\n?/g,
|
|
279
|
+
component: /<TwigStore\b[^>]*\/>\s*\n?/g,
|
|
280
|
+
},
|
|
276
281
|
vue: {
|
|
277
282
|
import: /import\s+VueStore\s+from\s+['"].*?vue\/Store\.vue['"];?\s*\n?/g,
|
|
278
283
|
component: /<VueStore\s+client:only="vue"\s*\/>\s*\n?/g
|
package/integrations/bun.lock
CHANGED
|
@@ -6,10 +6,13 @@
|
|
|
6
6
|
"name": "islands-integrations",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"astro": "^6.3.7",
|
|
9
|
+
"twig": "^3.0.0",
|
|
9
10
|
},
|
|
10
11
|
"devDependencies": {
|
|
11
12
|
"@eslint/compat": "^2.1.0",
|
|
12
13
|
"@eslint/js": "^9.39.4",
|
|
14
|
+
"@types/node": "^25.9.1",
|
|
15
|
+
"@types/twig": "^1.12.17",
|
|
13
16
|
"better-npm-audit": "^3.11.0",
|
|
14
17
|
"eslint": "^9.39.4",
|
|
15
18
|
"eslint-config-prettier": "^10.1.8",
|
|
@@ -40,6 +43,8 @@
|
|
|
40
43
|
|
|
41
44
|
"@babel/parser": ["@babel/parser@7.29.3", "", { "dependencies": { "@babel/types": "^7.29.0" }, "bin": { "parser": "bin/babel-parser.js" } }, "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA=="],
|
|
42
45
|
|
|
46
|
+
"@babel/runtime": ["@babel/runtime@7.29.7", "", {}, "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw=="],
|
|
47
|
+
|
|
43
48
|
"@babel/types": ["@babel/types@7.29.0", "", { "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.28.5" } }, "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A=="],
|
|
44
49
|
|
|
45
50
|
"@capsizecss/unpack": ["@capsizecss/unpack@4.0.0", "", { "dependencies": { "fontkitten": "^1.0.0" } }, "sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA=="],
|
|
@@ -280,6 +285,10 @@
|
|
|
280
285
|
|
|
281
286
|
"@types/nlcst": ["@types/nlcst@2.0.3", "", { "dependencies": { "@types/unist": "*" } }, "sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA=="],
|
|
282
287
|
|
|
288
|
+
"@types/node": ["@types/node@25.9.1", "", { "dependencies": { "undici-types": ">=7.24.0 <7.24.7" } }, "sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg=="],
|
|
289
|
+
|
|
290
|
+
"@types/twig": ["@types/twig@1.12.17", "", {}, "sha512-Lxcjgzt4mlDrv1xp1EdoBLPTxpjLAt9vtN3/qoblC5D6hMCYgZJOQHfaT/0gwCcAZENnKQ7Sga28DSsckPWa0g=="],
|
|
291
|
+
|
|
283
292
|
"@types/unist": ["@types/unist@3.0.3", "", {}, "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q=="],
|
|
284
293
|
|
|
285
294
|
"@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@8.59.4", "", { "dependencies": { "@eslint-community/regexpp": "^4.12.2", "@typescript-eslint/scope-manager": "8.59.4", "@typescript-eslint/type-utils": "8.59.4", "@typescript-eslint/utils": "8.59.4", "@typescript-eslint/visitor-keys": "8.59.4", "ignore": "^7.0.5", "natural-compare": "^1.4.0", "ts-api-utils": "^2.5.0" }, "peerDependencies": { "@typescript-eslint/parser": "^8.59.4", "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", "typescript": ">=4.8.4 <6.1.0" } }, "sha512-PegsU+XfyJJNjd4+u/k6f9yTyp0lEXXiPopUNobZcIAUJFGICFLN+sP0Rb3JehVmiij1Ph0dFGYqODoRo/2+6A=="],
|
|
@@ -558,6 +567,8 @@
|
|
|
558
567
|
|
|
559
568
|
"for-each": ["for-each@0.3.5", "", { "dependencies": { "is-callable": "^1.2.7" } }, "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg=="],
|
|
560
569
|
|
|
570
|
+
"foreachasync": ["foreachasync@3.0.0", "", {}, "sha512-J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw=="],
|
|
571
|
+
|
|
561
572
|
"fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="],
|
|
562
573
|
|
|
563
574
|
"function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="],
|
|
@@ -720,6 +731,8 @@
|
|
|
720
731
|
|
|
721
732
|
"locate-path": ["locate-path@6.0.0", "", { "dependencies": { "p-locate": "^5.0.0" } }, "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="],
|
|
722
733
|
|
|
734
|
+
"locutus": ["locutus@3.0.36", "", {}, "sha512-ilsz33lqEd+KerV9JnSHM9EApVYOZ86/JTGKyafmWvhTFtjYauzT1WmZgdJ4JBGR3dY0N0PTfIq2uLvazw5QsQ=="],
|
|
735
|
+
|
|
723
736
|
"lodash.get": ["lodash.get@4.4.2", "", {}, "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ=="],
|
|
724
737
|
|
|
725
738
|
"lodash.merge": ["lodash.merge@4.6.2", "", {}, "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="],
|
|
@@ -1072,6 +1085,8 @@
|
|
|
1072
1085
|
|
|
1073
1086
|
"tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="],
|
|
1074
1087
|
|
|
1088
|
+
"twig": ["twig@3.0.0", "", { "dependencies": { "@babel/runtime": "^7.8.4", "locutus": "^3.0.9", "minimatch": "^10", "walk": "2.3.x" }, "bin": { "twigjs": "bin/twigjs" } }, "sha512-cMfYLWAgdW15B7L5wmanmga113e4phQmo3rk5EFuUrQd99g7I3ncxgynS38P01m4ZXBDSdMYUTV1g3A66/Y56Q=="],
|
|
1089
|
+
|
|
1075
1090
|
"type-check": ["type-check@0.4.0", "", { "dependencies": { "prelude-ls": "^1.2.1" } }, "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="],
|
|
1076
1091
|
|
|
1077
1092
|
"typed-array-buffer": ["typed-array-buffer@1.0.3", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-typed-array": "^1.1.14" } }, "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw=="],
|
|
@@ -1094,6 +1109,8 @@
|
|
|
1094
1109
|
|
|
1095
1110
|
"uncrypto": ["uncrypto@0.1.3", "", {}, "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q=="],
|
|
1096
1111
|
|
|
1112
|
+
"undici-types": ["undici-types@7.24.6", "", {}, "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg=="],
|
|
1113
|
+
|
|
1097
1114
|
"unified": ["unified@11.0.5", "", { "dependencies": { "@types/unist": "^3.0.0", "bail": "^2.0.0", "devlop": "^1.0.0", "extend": "^3.0.0", "is-plain-obj": "^4.0.0", "trough": "^2.0.0", "vfile": "^6.0.0" } }, "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA=="],
|
|
1098
1115
|
|
|
1099
1116
|
"unifont": ["unifont@0.7.4", "", { "dependencies": { "css-tree": "^3.1.0", "ofetch": "^1.5.1", "ohash": "^2.0.11" } }, "sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg=="],
|
|
@@ -1132,6 +1149,8 @@
|
|
|
1132
1149
|
|
|
1133
1150
|
"vitefu": ["vitefu@1.1.3", "", { "peerDependencies": { "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" } }, "sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg=="],
|
|
1134
1151
|
|
|
1152
|
+
"walk": ["walk@2.3.15", "", { "dependencies": { "foreachasync": "^3.0.0" } }, "sha512-4eRTBZljBfIISK1Vnt69Gvr2w/wc3U6Vtrw7qiN5iqYJPH7LElcYh/iU4XWhdCy2dZqv1ToMyYlybDylfG/5Vg=="],
|
|
1153
|
+
|
|
1135
1154
|
"web-namespaces": ["web-namespaces@2.0.1", "", {}, "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ=="],
|
|
1136
1155
|
|
|
1137
1156
|
"which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="],
|
|
@@ -1212,6 +1231,8 @@
|
|
|
1212
1231
|
|
|
1213
1232
|
"table/ajv": ["ajv@8.20.0", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA=="],
|
|
1214
1233
|
|
|
1234
|
+
"twig/minimatch": ["minimatch@10.2.5", "", { "dependencies": { "brace-expansion": "^5.0.5" } }, "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg=="],
|
|
1235
|
+
|
|
1215
1236
|
"@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@5.0.6", "", { "dependencies": { "balanced-match": "^4.0.2" } }, "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g=="],
|
|
1216
1237
|
|
|
1217
1238
|
"csso/css-tree/mdn-data": ["mdn-data@2.0.28", "", {}, "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g=="],
|
|
@@ -1220,6 +1241,10 @@
|
|
|
1220
1241
|
|
|
1221
1242
|
"table/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="],
|
|
1222
1243
|
|
|
1244
|
+
"twig/minimatch/brace-expansion": ["brace-expansion@5.0.6", "", { "dependencies": { "balanced-match": "^4.0.2" } }, "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g=="],
|
|
1245
|
+
|
|
1223
1246
|
"@typescript-eslint/typescript-estree/minimatch/brace-expansion/balanced-match": ["balanced-match@4.0.4", "", {}, "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA=="],
|
|
1247
|
+
|
|
1248
|
+
"twig/minimatch/brace-expansion/balanced-match": ["balanced-match@4.0.4", "", {}, "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA=="],
|
|
1224
1249
|
}
|
|
1225
1250
|
}
|
package/integrations/deno.lock
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"specifiers": {
|
|
4
4
|
"npm:@eslint/compat@^2.1.0": "2.1.0_eslint@9.39.4",
|
|
5
5
|
"npm:@eslint/js@^9.39.4": "9.39.4",
|
|
6
|
-
"npm
|
|
6
|
+
"npm:@types/node@^25.9.1": "25.9.1",
|
|
7
|
+
"npm:@types/twig@^1.12.17": "1.12.17",
|
|
8
|
+
"npm:astro@^6.3.7": "6.3.7_@types+node@25.9.1",
|
|
7
9
|
"npm:better-npm-audit@^3.11.0": "3.11.0",
|
|
8
10
|
"npm:eslint-config-prettier@^10.1.8": "10.1.8_eslint@9.39.4",
|
|
9
11
|
"npm:eslint-plugin-astro@^1.7.0": "1.7.0_eslint@9.39.4",
|
|
@@ -12,6 +14,7 @@
|
|
|
12
14
|
"npm:eslint@^9.39.4": "9.39.4",
|
|
13
15
|
"npm:globals@^17.6.0": "17.6.0",
|
|
14
16
|
"npm:prettier@^3.8.3": "3.8.3",
|
|
17
|
+
"npm:twig@3": "3.0.0",
|
|
15
18
|
"npm:typescript-eslint@^8.59.4": "8.59.4_eslint@9.39.4_typescript@5.9.3",
|
|
16
19
|
"npm:typescript@^5.9.3": "5.9.3"
|
|
17
20
|
},
|
|
@@ -83,6 +86,9 @@
|
|
|
83
86
|
],
|
|
84
87
|
"bin": true
|
|
85
88
|
},
|
|
89
|
+
"@babel/runtime@7.29.2": {
|
|
90
|
+
"integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g=="
|
|
91
|
+
},
|
|
86
92
|
"@babel/types@7.29.0": {
|
|
87
93
|
"integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
|
|
88
94
|
"dependencies": [
|
|
@@ -752,6 +758,15 @@
|
|
|
752
758
|
"@types/unist"
|
|
753
759
|
]
|
|
754
760
|
},
|
|
761
|
+
"@types/node@25.9.1": {
|
|
762
|
+
"integrity": "sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==",
|
|
763
|
+
"dependencies": [
|
|
764
|
+
"undici-types"
|
|
765
|
+
]
|
|
766
|
+
},
|
|
767
|
+
"@types/twig@1.12.17": {
|
|
768
|
+
"integrity": "sha512-Lxcjgzt4mlDrv1xp1EdoBLPTxpjLAt9vtN3/qoblC5D6hMCYgZJOQHfaT/0gwCcAZENnKQ7Sga28DSsckPWa0g=="
|
|
769
|
+
},
|
|
755
770
|
"@types/unist@3.0.3": {
|
|
756
771
|
"integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q=="
|
|
757
772
|
},
|
|
@@ -991,7 +1006,7 @@
|
|
|
991
1006
|
"semver@7.8.1"
|
|
992
1007
|
]
|
|
993
1008
|
},
|
|
994
|
-
"astro@6.3.
|
|
1009
|
+
"astro@6.3.7_@types+node@25.9.1": {
|
|
995
1010
|
"integrity": "sha512-zIeDRrI0qNgN1lcCjNqt6/IVCVej7VwSa326cO8uP9BOk1cg4QuffhLnOn2gCgWQr32/wxpSRFfXiLKHglu1Tw==",
|
|
996
1011
|
"dependencies": [
|
|
997
1012
|
"@astrojs/compiler@4.0.0",
|
|
@@ -1800,6 +1815,9 @@
|
|
|
1800
1815
|
"is-callable"
|
|
1801
1816
|
]
|
|
1802
1817
|
},
|
|
1818
|
+
"foreachasync@3.0.0": {
|
|
1819
|
+
"integrity": "sha512-J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw=="
|
|
1820
|
+
},
|
|
1803
1821
|
"fsevents@2.3.3": {
|
|
1804
1822
|
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
1805
1823
|
"os": ["darwin"],
|
|
@@ -2317,6 +2335,9 @@
|
|
|
2317
2335
|
"p-locate"
|
|
2318
2336
|
]
|
|
2319
2337
|
},
|
|
2338
|
+
"locutus@3.0.36": {
|
|
2339
|
+
"integrity": "sha512-ilsz33lqEd+KerV9JnSHM9EApVYOZ86/JTGKyafmWvhTFtjYauzT1WmZgdJ4JBGR3dY0N0PTfIq2uLvazw5QsQ=="
|
|
2340
|
+
},
|
|
2320
2341
|
"lodash.get@4.4.2": {
|
|
2321
2342
|
"integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==",
|
|
2322
2343
|
"deprecated": true
|
|
@@ -3563,6 +3584,16 @@
|
|
|
3563
3584
|
"tslib@2.8.1": {
|
|
3564
3585
|
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
|
|
3565
3586
|
},
|
|
3587
|
+
"twig@3.0.0": {
|
|
3588
|
+
"integrity": "sha512-cMfYLWAgdW15B7L5wmanmga113e4phQmo3rk5EFuUrQd99g7I3ncxgynS38P01m4ZXBDSdMYUTV1g3A66/Y56Q==",
|
|
3589
|
+
"dependencies": [
|
|
3590
|
+
"@babel/runtime",
|
|
3591
|
+
"locutus",
|
|
3592
|
+
"minimatch@10.2.5",
|
|
3593
|
+
"walk"
|
|
3594
|
+
],
|
|
3595
|
+
"bin": true
|
|
3596
|
+
},
|
|
3566
3597
|
"type-check@0.4.0": {
|
|
3567
3598
|
"integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
|
|
3568
3599
|
"dependencies": [
|
|
@@ -3643,6 +3674,9 @@
|
|
|
3643
3674
|
"uncrypto@0.1.3": {
|
|
3644
3675
|
"integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q=="
|
|
3645
3676
|
},
|
|
3677
|
+
"undici-types@7.24.6": {
|
|
3678
|
+
"integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg=="
|
|
3679
|
+
},
|
|
3646
3680
|
"unified@11.0.5": {
|
|
3647
3681
|
"integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
|
|
3648
3682
|
"dependencies": [
|
|
@@ -3766,9 +3800,10 @@
|
|
|
3766
3800
|
"vfile-message"
|
|
3767
3801
|
]
|
|
3768
3802
|
},
|
|
3769
|
-
"vite@7.3.
|
|
3803
|
+
"vite@7.3.3_@types+node@25.9.1": {
|
|
3770
3804
|
"integrity": "sha512-/4XH147Ui7OGTjg3HbdWe5arnZQSbfuRzdr9Ec7TQi5I7R+ir0Rlc9GIvD4v0XZurELqA035KVXJXpR61xhiTA==",
|
|
3771
3805
|
"dependencies": [
|
|
3806
|
+
"@types/node",
|
|
3772
3807
|
"esbuild",
|
|
3773
3808
|
"fdir",
|
|
3774
3809
|
"picomatch@4.0.4",
|
|
@@ -3779,9 +3814,12 @@
|
|
|
3779
3814
|
"optionalDependencies": [
|
|
3780
3815
|
"fsevents"
|
|
3781
3816
|
],
|
|
3817
|
+
"optionalPeers": [
|
|
3818
|
+
"@types/node"
|
|
3819
|
+
],
|
|
3782
3820
|
"bin": true
|
|
3783
3821
|
},
|
|
3784
|
-
"vitefu@1.1.3_vite@7.3.
|
|
3822
|
+
"vitefu@1.1.3_vite@7.3.3__@types+node@25.9.1_@types+node@25.9.1": {
|
|
3785
3823
|
"integrity": "sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg==",
|
|
3786
3824
|
"dependencies": [
|
|
3787
3825
|
"vite"
|
|
@@ -3790,6 +3828,12 @@
|
|
|
3790
3828
|
"vite"
|
|
3791
3829
|
]
|
|
3792
3830
|
},
|
|
3831
|
+
"walk@2.3.15": {
|
|
3832
|
+
"integrity": "sha512-4eRTBZljBfIISK1Vnt69Gvr2w/wc3U6Vtrw7qiN5iqYJPH7LElcYh/iU4XWhdCy2dZqv1ToMyYlybDylfG/5Vg==",
|
|
3833
|
+
"dependencies": [
|
|
3834
|
+
"foreachasync"
|
|
3835
|
+
]
|
|
3836
|
+
},
|
|
3793
3837
|
"web-namespaces@2.0.1": {
|
|
3794
3838
|
"integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ=="
|
|
3795
3839
|
},
|
|
@@ -3879,6 +3923,8 @@
|
|
|
3879
3923
|
"dependencies": [
|
|
3880
3924
|
"npm:@eslint/compat@^2.1.0",
|
|
3881
3925
|
"npm:@eslint/js@^9.39.4",
|
|
3926
|
+
"npm:@types/node@^25.9.1",
|
|
3927
|
+
"npm:@types/twig@^1.12.17",
|
|
3882
3928
|
"npm:astro@^6.3.7",
|
|
3883
3929
|
"npm:better-npm-audit@^3.11.0",
|
|
3884
3930
|
"npm:eslint-config-prettier@^10.1.8",
|
|
@@ -3888,6 +3934,7 @@
|
|
|
3888
3934
|
"npm:eslint@^9.39.4",
|
|
3889
3935
|
"npm:globals@^17.6.0",
|
|
3890
3936
|
"npm:prettier@^3.8.3",
|
|
3937
|
+
"npm:twig@3",
|
|
3891
3938
|
"npm:typescript-eslint@^8.59.4",
|
|
3892
3939
|
"npm:typescript@^5.9.3"
|
|
3893
3940
|
]
|