create-outsystems-astro 0.8.2 → 0.10.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.
Files changed (56) hide show
  1. package/README.md +1 -1
  2. package/bin/cli.js +62 -1
  3. package/integrations/.prettierignore +15 -0
  4. package/integrations/.yarn/releases/yarn-4.15.0.cjs +940 -0
  5. package/integrations/.yarnrc.yml +6 -0
  6. package/integrations/bun.lock +1225 -0
  7. package/integrations/bunfig.toml +3 -0
  8. package/integrations/deno.json +4 -0
  9. package/integrations/deno.lock +3896 -0
  10. package/integrations/eslint.config.mjs +61 -0
  11. package/integrations/html/client.ts +30 -0
  12. package/integrations/html/index.ts +57 -0
  13. package/integrations/html/server.ts +54 -0
  14. package/integrations/package-lock.json +8898 -0
  15. package/integrations/package.json +39 -0
  16. package/integrations/pnpm-lock.yaml +5499 -0
  17. package/integrations/pnpm-workspace.yaml +4 -0
  18. package/integrations/tsconfig.json +15 -0
  19. package/integrations/yarn.lock +6305 -0
  20. package/package.json +3 -1
  21. package/template/.github/workflows/bun-test.yml +127 -0
  22. package/template/.github/workflows/deno-test.yml +127 -0
  23. package/template/.github/workflows/{test.yml → npm-test.yml} +7 -7
  24. package/template/.github/workflows/pnpm-test.yml +158 -0
  25. package/template/.github/workflows/yarn-test.yml +158 -0
  26. package/template/.gitignore +4 -0
  27. package/template/.prettierignore +1 -0
  28. package/template/.yarn/releases/yarn-4.15.0.cjs +940 -0
  29. package/template/.yarnrc.yml +8 -0
  30. package/template/AGENTS.md +46 -1
  31. package/template/README.md +15 -0
  32. package/template/astro.config.mjs +8 -3
  33. package/template/bun.lock +580 -966
  34. package/template/bunfig.toml +3 -0
  35. package/template/deno.json +3 -19
  36. package/template/deno.lock +1416 -1548
  37. package/template/eslint.config.mjs +1 -0
  38. package/template/package-lock.json +7332 -9398
  39. package/template/package.json +69 -93
  40. package/template/patches/@analogjs+astro-angular+2.5.2.patch +26 -0
  41. package/template/pnpm-lock.yaml +2638 -2683
  42. package/template/pnpm-workspace.yaml +11 -6
  43. package/template/src/framework/html/Demo.ts +105 -0
  44. package/template/src/framework/html/Store.ts +47 -0
  45. package/template/src/images/html.png +0 -0
  46. package/template/src/pages/html/html-demo.astro +61 -0
  47. package/template/src/pages/multi/store.astro +3 -1
  48. package/template/src/stores/framework.ts +1 -0
  49. package/template/test/e2e/html/html-demo.spec.ts +36 -0
  50. package/template/test/integration/html/Demo.test.ts +83 -0
  51. package/template/tsconfig.json +1 -1
  52. package/template/vitest.config.ts +9 -0
  53. package/template/yarn.lock +14730 -10574
  54. package/template/patches/@analogjs+astro-angular+2.3.1.patch +0 -13
  55. package/template/patches-deno/playwright+1.58.2.patch +0 -26
  56. /package/template/patches/{@angular+build+21.2.5.patch → @angular+build+21.2.12.patch} +0 -0
@@ -0,0 +1,3 @@
1
+ [install]
2
+
3
+ minimumReleaseAge = 10080
@@ -1,22 +1,6 @@
1
1
  {
2
+ "allowScripts": ["npm:@parcel/watcher@2.5.6", "npm:esbuild@0.27.3", "npm:fsevents@2.3.2", "npm:fsevents@2.3.3", "npm:lmdb@3.5.1", "npm:msgpackr-extract@3.0.3", "npm:msgpackr-extract@3.0.4", "npm:sharp@0.34.5"],
2
3
  "imports": {
3
- "@hono/node-server": "npm:@hono/node-server@^1.19.13",
4
- "defu": "npm:defu@^6.1.5",
5
- "hono": "npm:hono@^4.12.12",
6
- "playwright": "npm:playwright@1.58.2",
7
- "vite@8": "npm:vite@^8.0.8"
8
- },
9
- "allowScripts": [
10
- "npm:@parcel/watcher@2.5.4",
11
- "npm:@parcel/watcher@2.5.6",
12
- "npm:esbuild@0.25.12",
13
- "npm:esbuild@0.27.2",
14
- "npm:esbuild@0.27.3",
15
- "npm:fsevents@2.3.2",
16
- "npm:fsevents@2.3.3",
17
- "npm:lmdb@3.4.4",
18
- "npm:lmdb@3.5.1",
19
- "npm:msgpackr-extract@3.0.3",
20
- "npm:sharp@0.34.5"
21
- ]
4
+ "tmp": "npm:tmp@^0.2.6"
5
+ }
22
6
  }