create-outsystems-astro 0.10.0 → 0.11.1

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.
Files changed (38) hide show
  1. package/bin/cli.js +7 -2
  2. package/integrations/.yarnrc.yml +28 -0
  3. package/integrations/bun.lock +80 -52
  4. package/integrations/deno.json +36 -2
  5. package/integrations/deno.lock +281 -223
  6. package/integrations/package-lock.json +345 -227
  7. package/integrations/package.json +12 -3
  8. package/integrations/pnpm-lock.yaml +545 -479
  9. package/integrations/pnpm-workspace.yaml +30 -0
  10. package/integrations/tsconfig.json +2 -1
  11. package/integrations/twig/client.ts +34 -0
  12. package/integrations/twig/index.ts +185 -0
  13. package/integrations/twig/server.ts +54 -0
  14. package/integrations/yarn.lock +547 -480
  15. package/package.json +1 -1
  16. package/template/.yarnrc.yml +27 -1
  17. package/template/AGENTS.md +47 -0
  18. package/template/astro.config.mjs +4 -0
  19. package/template/bun.lock +1469 -1389
  20. package/template/deno.json +36 -4
  21. package/template/deno.lock +737 -637
  22. package/template/package-lock.json +1569 -4290
  23. package/template/package.json +43 -41
  24. package/template/pnpm-lock.yaml +1736 -1894
  25. package/template/pnpm-workspace.yaml +28 -2
  26. package/template/src/env.d.ts +6 -0
  27. package/template/src/framework/twig/Demo.twig +100 -0
  28. package/template/src/framework/twig/Store.twig +45 -0
  29. package/template/src/images/twig.png +0 -0
  30. package/template/src/pages/multi/store.astro +10 -0
  31. package/template/src/pages/twig/twig-demo.astro +65 -0
  32. package/template/src/stores/framework.ts +1 -0
  33. package/template/test/e2e/twig/twig-demo.spec.ts +36 -0
  34. package/template/test/integration/twig/Demo.test.ts +84 -0
  35. package/template/vitest.config.ts +9 -0
  36. package/template/yarn.lock +1296 -1457
  37. /package/template/patches/{@analogjs+astro-angular+2.5.2.patch → @analogjs+astro-angular+2.6.0.patch} +0 -0
  38. /package/template/patches/{@angular+build+21.2.12.patch → @angular+build+21.2.14.patch} +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "islands-integrations",
3
- "version": "0.10.0",
3
+ "version": "0.11.1",
4
4
  "description": "Integrations for OutSystems Astro Islands",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -20,11 +20,14 @@
20
20
  "typecheck": "tsc --noEmit"
21
21
  },
22
22
  "dependencies": {
23
- "astro": "^6.3.7"
23
+ "astro": "^6.4.4",
24
+ "twig": "^3.0.0"
24
25
  },
25
26
  "devDependencies": {
26
27
  "@eslint/compat": "^2.1.0",
27
28
  "@eslint/js": "^9.39.4",
29
+ "@types/node": "^25.9.2",
30
+ "@types/twig": "^1.12.17",
28
31
  "better-npm-audit": "^3.11.0",
29
32
  "eslint": "^9.39.4",
30
33
  "eslint-config-prettier": "^10.1.8",
@@ -34,6 +37,12 @@
34
37
  "globals": "^17.6.0",
35
38
  "prettier": "^3.8.3",
36
39
  "typescript": "^5.9.3",
37
- "typescript-eslint": "^8.59.4"
40
+ "typescript-eslint": "^8.60.1"
41
+ },
42
+ "overrides": {
43
+ "esbuild": "^0.28.1"
44
+ },
45
+ "resolutions": {
46
+ "esbuild": "^0.28.1"
38
47
  }
39
48
  }