create-outsystems-astro 0.9.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.
Files changed (62) hide show
  1. package/bin/cli.js +42 -1
  2. package/integrations/.prettierignore +15 -0
  3. package/integrations/.yarn/releases/yarn-4.15.0.cjs +940 -0
  4. package/integrations/.yarnrc.yml +6 -0
  5. package/integrations/bun.lock +1250 -0
  6. package/integrations/bunfig.toml +3 -0
  7. package/integrations/deno.json +4 -0
  8. package/integrations/deno.lock +3943 -0
  9. package/integrations/eslint.config.mjs +61 -0
  10. package/integrations/html/client.ts +30 -0
  11. package/integrations/html/index.ts +57 -0
  12. package/integrations/html/server.ts +54 -0
  13. package/integrations/package-lock.json +8926 -0
  14. package/integrations/package.json +42 -0
  15. package/integrations/pnpm-lock.yaml +5562 -0
  16. package/integrations/pnpm-workspace.yaml +4 -0
  17. package/integrations/tsconfig.json +16 -0
  18. package/integrations/twig/client.ts +34 -0
  19. package/integrations/twig/index.ts +185 -0
  20. package/integrations/twig/server.ts +54 -0
  21. package/integrations/yarn.lock +6375 -0
  22. package/package.json +3 -1
  23. package/template/.github/workflows/deno-test.yml +1 -1
  24. package/template/.github/workflows/npm-test.yml +1 -1
  25. package/template/.github/workflows/pnpm-test.yml +2 -2
  26. package/template/.github/workflows/yarn-test.yml +26 -13
  27. package/template/.gitignore +4 -0
  28. package/template/.prettierignore +1 -0
  29. package/template/.yarn/releases/yarn-4.15.0.cjs +940 -0
  30. package/template/.yarnrc.yml +8 -0
  31. package/template/AGENTS.md +93 -1
  32. package/template/README.md +15 -0
  33. package/template/astro.config.mjs +8 -0
  34. package/template/bun.lock +281 -367
  35. package/template/bunfig.toml +3 -0
  36. package/template/deno.json +3 -11
  37. package/template/deno.lock +703 -676
  38. package/template/eslint.config.mjs +1 -0
  39. package/template/package-lock.json +705 -787
  40. package/template/package.json +38 -41
  41. package/template/pnpm-lock.yaml +1126 -1114
  42. package/template/pnpm-workspace.yaml +5 -0
  43. package/template/src/env.d.ts +6 -0
  44. package/template/src/framework/html/Demo.ts +105 -0
  45. package/template/src/framework/html/Store.ts +47 -0
  46. package/template/src/framework/twig/Demo.twig +100 -0
  47. package/template/src/framework/twig/Store.twig +45 -0
  48. package/template/src/images/html.png +0 -0
  49. package/template/src/images/twig.png +0 -0
  50. package/template/src/pages/html/html-demo.astro +61 -0
  51. package/template/src/pages/multi/store.astro +13 -1
  52. package/template/src/pages/twig/twig-demo.astro +65 -0
  53. package/template/src/stores/framework.ts +2 -0
  54. package/template/test/e2e/html/html-demo.spec.ts +36 -0
  55. package/template/test/e2e/twig/twig-demo.spec.ts +36 -0
  56. package/template/test/integration/html/Demo.test.ts +83 -0
  57. package/template/test/integration/twig/Demo.test.ts +84 -0
  58. package/template/tsconfig.json +1 -1
  59. package/template/vitest.config.ts +18 -0
  60. package/template/yarn.lock +14777 -10350
  61. /package/template/patches/{@analogjs+astro-angular+2.5.1.patch → @analogjs+astro-angular+2.5.2.patch} +0 -0
  62. /package/template/patches/{@angular+build+21.2.11.patch → @angular+build+21.2.12.patch} +0 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-outsystems-astro",
3
3
  "type": "module",
4
- "version": "0.9.0",
4
+ "version": "0.11.0",
5
5
  "description": "Create an OutSystems Astro Island project to import as a component into your OutSystems application",
6
6
  "repository": {
7
7
  "type": "git",
@@ -12,6 +12,8 @@
12
12
  },
13
13
  "files": [
14
14
  "bin",
15
+ "integrations",
16
+ "integrations/package.json",
15
17
  "template",
16
18
  "template/.gitignore"
17
19
  ],
@@ -8,7 +8,7 @@ on:
8
8
  - cron: '0 12 * * *'
9
9
 
10
10
  env:
11
- DENO_VERSION: '2.7.14'
11
+ DENO_VERSION: '2.8.0'
12
12
 
13
13
  jobs:
14
14
 
@@ -8,7 +8,7 @@ on:
8
8
  - cron: '0 12 * * *'
9
9
 
10
10
  env:
11
- NODE_VERSION: '24.15.0'
11
+ NODE_VERSION: '24.16.0'
12
12
 
13
13
  jobs:
14
14
 
@@ -8,8 +8,8 @@ on:
8
8
  - cron: '0 12 * * *'
9
9
 
10
10
  env:
11
- NODE_VERSION: '24.15.0'
12
- PNPM_VERSION: '11.1.1'
11
+ NODE_VERSION: '24.16.0'
12
+ PNPM_VERSION: '11.5.0'
13
13
 
14
14
  jobs:
15
15
 
@@ -8,7 +8,8 @@ on:
8
8
  - cron: '0 12 * * *'
9
9
 
10
10
  env:
11
- NODE_VERSION: '24.15.0'
11
+ NODE_VERSION: '24.16.0'
12
+ YARN_VERSION: '4.15.0'
12
13
 
13
14
  jobs:
14
15
 
@@ -24,8 +25,10 @@ jobs:
24
25
  with:
25
26
  node-version: ${{ env.NODE_VERSION }}
26
27
 
27
- - name: Enable Corepack
28
- run: corepack enable
28
+ - name: Enable Corepack and Set Yarn Version
29
+ run: |
30
+ corepack enable
31
+ corepack prepare yarn@${{ env.YARN_VERSION }}
29
32
 
30
33
  - name: Install dependencies
31
34
  working-directory: template
@@ -46,8 +49,10 @@ jobs:
46
49
  with:
47
50
  node-version: ${{ env.NODE_VERSION }}
48
51
 
49
- - name: Enable Corepack
50
- run: corepack enable
52
+ - name: Enable Corepack and Set Yarn Version
53
+ run: |
54
+ corepack enable
55
+ corepack prepare yarn@${{ env.YARN_VERSION }}
51
56
 
52
57
  - name: Install dependencies
53
58
  working-directory: template
@@ -68,8 +73,10 @@ jobs:
68
73
  with:
69
74
  node-version: ${{ env.NODE_VERSION }}
70
75
 
71
- - name: Enable Corepack
72
- run: corepack enable
76
+ - name: Enable Corepack and Set Yarn Version
77
+ run: |
78
+ corepack enable
79
+ corepack prepare yarn@${{ env.YARN_VERSION }}
73
80
 
74
81
  - name: Install dependencies
75
82
  working-directory: template
@@ -90,8 +97,10 @@ jobs:
90
97
  with:
91
98
  node-version: ${{ env.NODE_VERSION }}
92
99
 
93
- - name: Enable Corepack
94
- run: corepack enable
100
+ - name: Enable Corepack and Set Yarn Version
101
+ run: |
102
+ corepack enable
103
+ corepack prepare yarn@${{ env.YARN_VERSION }}
95
104
 
96
105
  - name: Install dependencies
97
106
  run: yarn install --frozen-lockfile
@@ -111,8 +120,10 @@ jobs:
111
120
  with:
112
121
  node-version: ${{ env.NODE_VERSION }}
113
122
 
114
- - name: Enable Corepack
115
- run: corepack enable
123
+ - name: Enable Corepack and Set Yarn Version
124
+ run: |
125
+ corepack enable
126
+ corepack prepare yarn@${{ env.YARN_VERSION }}
116
127
 
117
128
  - name: Install dependencies
118
129
  run: yarn install --frozen-lockfile
@@ -135,8 +146,10 @@ jobs:
135
146
  with:
136
147
  node-version: ${{ env.NODE_VERSION }}
137
148
 
138
- - name: Enable Corepack
139
- run: corepack enable
149
+ - name: Enable Corepack and Set Yarn Version
150
+ run: |
151
+ corepack enable
152
+ corepack prepare yarn@${{ env.YARN_VERSION }}
140
153
 
141
154
  - name: Install dependencies
142
155
  run: yarn install --frozen-lockfile
@@ -12,6 +12,10 @@ yarn-debug.log*
12
12
  yarn-error.log*
13
13
  pnpm-debug.log*
14
14
 
15
+ # Yarn v4
16
+ .yarn/cache
17
+ .yarn/install-state.gz
18
+
15
19
 
16
20
  # environment variables
17
21
  .env
@@ -1,4 +1,5 @@
1
1
  .github/
2
+ .integrations/
2
3
  .prettierrc
3
4
  bun.lock
4
5
  deno.json