create-outsystems-astro 0.7.2 → 0.8.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 (30) hide show
  1. package/README.md +1 -0
  2. package/bin/cli.js +10 -1
  3. package/package.json +1 -1
  4. package/template/.github/workflows/test.yml +13 -13
  5. package/template/.prettierrc +1 -1
  6. package/template/AGENTS.md +74 -2
  7. package/template/astro.config.mjs +5 -0
  8. package/template/bun.lock +645 -190
  9. package/template/deno.json +1 -17
  10. package/template/deno.lock +902 -461
  11. package/template/eslint.config.mjs +5 -0
  12. package/template/package-lock.json +9370 -5570
  13. package/template/package.json +50 -89
  14. package/template/pnpm-lock.yaml +1627 -740
  15. package/template/src/framework/solid/Demo.tsx +85 -0
  16. package/template/src/framework/solid/Store.tsx +31 -0
  17. package/template/src/images/solid.png +0 -0
  18. package/template/src/pages/multi/store.astro +3 -1
  19. package/template/src/pages/solid/solid-demo.astro +65 -0
  20. package/template/src/stores/framework.ts +1 -0
  21. package/template/test/e2e/solid/solid-demo.spec.ts +42 -0
  22. package/template/test/integration/solid/Demo.test.tsx +90 -0
  23. package/template/vitest.config.ts +12 -0
  24. package/template/yarn.lock +958 -392
  25. /package/template/patches/{@angular+build+21.2.2.patch → @angular+build+21.2.5.patch} +0 -0
  26. /package/template/test/e2e/angular/{angular-counter.spec.ts → angular-demo.spec.ts} +0 -0
  27. /package/template/test/e2e/preact/{preact-counter.spec.ts → preact-demo.spec.ts} +0 -0
  28. /package/template/test/e2e/react/{react-counter.spec.ts → react-demo.spec.ts} +0 -0
  29. /package/template/test/e2e/svelte/{svelte-counter.spec.ts → svelte-demo.spec.ts} +0 -0
  30. /package/template/test/e2e/vue/{vue-counter.spec.ts → vue-demo.spec.ts} +0 -0
@@ -14,65 +14,71 @@
14
14
  "format:write": "prettier --write .",
15
15
  "lint": "eslint",
16
16
  "lint:fix": "eslint --fix",
17
- "output": "NODE_ENV=production astro build && ts-node ./output.ts",
18
- "output:bun": "NODE_ENV=production astro build && bun run ./output.ts",
19
- "output:deno": "NODE_ENV=production astro build && deno run -A ./output.ts",
17
+ "output": "cross-env NODE_ENV=production astro build && ts-node ./output.ts",
18
+ "output:bun": "cross-env NODE_ENV=production astro build && bun run ./output.ts",
19
+ "output:deno": "cross-env NODE_ENV=production astro build && deno run -A ./output.ts",
20
20
  "postinstall": "patch-package",
21
21
  "postinstall:deno": "patch-package && patch-package --patch-dir patches-deno",
22
22
  "preview": "astro preview",
23
23
  "test": "vitest",
24
24
  "test:e2e": "playwright test",
25
- "test:e2e:deno": "PW_DISABLE_TS_ESM=true deno run --allow-all npm:playwright test",
25
+ "test:e2e:deno": "cross-env PW_DISABLE_TS_ESM=true deno run --allow-all npm:playwright test",
26
26
  "test:e2e:ui": "playwright test --ui",
27
- "test:e2e:ui:deno": "PW_DISABLE_TS_ESM=true deno run --allow-all npm:playwright test --ui",
27
+ "test:e2e:ui:deno": "cross-env PW_DISABLE_TS_ESM=true deno run --allow-all npm:playwright test --ui",
28
28
  "test:e2e:install": "playwright install --with-deps",
29
29
  "test:run": "vitest run",
30
30
  "typecheck": "tsc"
31
31
  },
32
32
  "dependencies": {
33
33
  "@analogjs/astro-angular": "^2.3.1",
34
- "@angular/animations": "^21.2.4",
35
- "@angular/common": "^21.2.4",
36
- "@angular/core": "^21.2.4",
37
- "@angular/platform-browser": "^21.2.4",
38
- "@angular/platform-server": "^21.2.4",
39
- "@angular/router": "^21.2.4",
34
+ "@angular/animations": "^21.2.6",
35
+ "@angular/common": "^21.2.6",
36
+ "@angular/core": "^21.2.6",
37
+ "@angular/platform-browser": "^21.2.6",
38
+ "@angular/platform-server": "^21.2.6",
39
+ "@angular/router": "^21.2.6",
40
40
  "@astrojs/preact": "^4.1.3",
41
41
  "@astrojs/react": "^4.4.2",
42
+ "@astrojs/solid-js": "^5.1.3",
42
43
  "@astrojs/svelte": "^7.2.5",
43
44
  "@astrojs/vue": "^5.1.4",
44
- "@nanostores/preact": "^1.0.0",
45
- "@nanostores/react": "^1.0.0",
45
+ "@nanostores/preact": "^1.1.0",
46
+ "@nanostores/react": "^1.1.0",
47
+ "@nanostores/solid": "^1.1.1",
46
48
  "@nanostores/vue": "^1.1.0",
47
49
  "astro": "^5.18.1",
48
- "nanostores": "^1.1.1",
49
- "preact": "^10.28.4",
50
+ "cross-env": "^10.1.0",
51
+ "nanostores": "^1.2.0",
52
+ "preact": "^10.29.0",
50
53
  "react": "^19.2.4",
51
54
  "react-dom": "^19.2.4",
52
55
  "rxjs": "^7.8.2",
53
- "svelte": "^5.53.7",
56
+ "solid-js": "^1.9.12",
57
+ "svelte": "^5.55.0",
54
58
  "tslib": "^2.8.1",
55
- "vue": "^3.5.29"
59
+ "vue": "^3.5.31"
56
60
  },
57
61
  "devDependencies": {
58
62
  "@analogjs/vite-plugin-angular": "^2.3.1",
59
63
  "@analogjs/vitest-angular": "^2.3.1",
60
- "@angular-devkit/architect": "^0.2102.2",
61
- "@angular-devkit/schematics": "^21.2.2",
62
- "@angular/build": "^21.2.2",
63
- "@angular/cli": "^21.2.2",
64
- "@angular/compiler": "^21.2.4",
65
- "@angular/compiler-cli": "^21.2.4",
66
- "@angular/language-service": "^21.2.4",
64
+ "@angular-devkit/architect": "^0.2102.5",
65
+ "@angular-devkit/schematics": "^21.2.5",
66
+ "@angular/build": "^21.2.5",
67
+ "@angular/cli": "^21.2.5",
68
+ "@angular/compiler": "^21.2.6",
69
+ "@angular/compiler-cli": "^21.2.6",
70
+ "@angular/language-service": "^21.2.6",
67
71
  "@babel/core": "^7.29.0",
68
72
  "@eslint/compat": "^2.0.3",
69
73
  "@eslint/eslintrc": "^3.3.5",
70
74
  "@eslint/js": "^9.39.4",
71
- "@eslint/markdown": "^7.5.1",
75
+ "@eslint/markdown": "^8.0.0",
76
+ "@oxc-project/runtime": "^0.122.0",
72
77
  "@playwright/test": "1.58.2",
73
- "@preact/preset-vite": "^2.10.3",
74
- "@sveltejs/vite-plugin-svelte": "^6.2.4",
75
- "@testing-library/angular": "^19.1.0",
78
+ "@preact/preset-vite": "^2.10.5",
79
+ "@solidjs/testing-library": "^0.8.10",
80
+ "@sveltejs/vite-plugin-svelte": "^7.0.0",
81
+ "@testing-library/angular": "^19.1.10",
76
82
  "@testing-library/dom": "^10.4.1",
77
83
  "@testing-library/jest-dom": "^6.9.1",
78
84
  "@testing-library/preact": "^3.2.4",
@@ -81,12 +87,12 @@
81
87
  "@testing-library/user-event": "^14.6.1",
82
88
  "@testing-library/vue": "^8.1.0",
83
89
  "@types/js-beautify": "^1.14.3",
84
- "@types/node": "^25.3.5",
90
+ "@types/node": "^25.5.0",
85
91
  "@types/react": "^19.2.14",
86
92
  "@types/react-dom": "^19.2.3",
87
- "@vitejs/plugin-react": "^5.1.4",
88
- "@vitejs/plugin-vue": "^6.0.4",
89
- "angular-eslint": "^21.3.0",
93
+ "@vitejs/plugin-react": "^6.0.1",
94
+ "@vitejs/plugin-vue": "^6.0.5",
95
+ "angular-eslint": "^21.3.1",
90
96
  "better-npm-audit": "^3.11.0",
91
97
  "dotenv": "^17.3.1",
92
98
  "eslint": "^9.39.4",
@@ -94,76 +100,31 @@
94
100
  "eslint-config-prettier": "^10.1.8",
95
101
  "eslint-plugin-astro": "^1.6.0",
96
102
  "eslint-plugin-import": "^2.32.0",
97
- "eslint-plugin-jest": "^29.15.0",
103
+ "eslint-plugin-jest": "^29.15.1",
98
104
  "eslint-plugin-jest-dom": "^5.5.0",
99
- "eslint-plugin-perfectionist": "^5.6.0",
100
- "eslint-plugin-playwright": "^2.9.0",
105
+ "eslint-plugin-perfectionist": "^5.7.0",
106
+ "eslint-plugin-playwright": "^2.10.1",
101
107
  "eslint-plugin-react": "^7.37.5",
102
108
  "eslint-plugin-react-hooks": "^7.0.1",
103
- "eslint-plugin-svelte": "^3.15.0",
104
- "eslint-plugin-testing-library": "^7.16.0",
109
+ "eslint-plugin-solid": "^0.14.5",
110
+ "eslint-plugin-svelte": "^3.16.0",
111
+ "eslint-plugin-testing-library": "^7.16.2",
105
112
  "eslint-plugin-vue": "^10.8.0",
106
113
  "globals": "^17.4.0",
107
- "happy-dom": "^20.8.8",
114
+ "happy-dom": "^20.8.9",
108
115
  "improved-yarn-audit": "^3.0.4",
109
116
  "js-beautify": "^1.15.4",
110
117
  "patch-package": "^8.0.1",
111
118
  "prettier": "^3.8.1",
119
+ "prettier-plugin-solidity": "^2.3.1",
112
120
  "prettier-plugin-svelte": "^3.5.1",
113
121
  "svelte-eslint-parser": "^1.6.0",
114
122
  "ts-node": "^10.9.2",
115
123
  "typescript": "^5.9.3",
116
- "typescript-eslint": "^8.56.1",
117
- "vite": "^6.4.1",
118
- "vitest": "^4.0.18",
124
+ "typescript-eslint": "^8.57.2",
125
+ "vite": "^8.0.1",
126
+ "vite-plugin-solid": "^2.11.11",
127
+ "vitest": "^4.1.2",
119
128
  "vue-eslint-parser": "^10.4.0"
120
- },
121
- "overrides": {
122
- "brace-expansion@1": "^1.1.13",
123
- "brace-expansion@2": "^2.0.3",
124
- "brace-expansion@5": "^5.0.5",
125
- "devalue": "^5.6.4",
126
- "flatted": "^3.4.2",
127
- "h3": "^1.15.6",
128
- "hono": "^4.12.7",
129
- "path-to-regexp": "^8.4.0",
130
- "picomatch@2": "^2.3.2",
131
- "picomatch@3": "^3.0.2",
132
- "picomatch@4": "^4.0.4",
133
- "smol-toml": "^1.6.1",
134
- "tar": "^7.5.11",
135
- "undici": "^7.24.0",
136
- "yaml@1": "^1.10.3",
137
- "yaml@2": "^2.8.3"
138
- },
139
- "resolutions": {
140
- "devalue": "^5.6.4",
141
- "flatted": "^3.4.2",
142
- "h3": "^1.15.6",
143
- "hono": "^4.12.7",
144
- "path-to-regexp": "^8.4.0",
145
- "smol-toml": "^1.6.1",
146
- "tar": "^7.5.11",
147
- "undici": "^7.24.0"
148
- },
149
- "pnpm": {
150
- "overrides": {
151
- "brace-expansion@1": "^1.1.13",
152
- "brace-expansion@2": "^2.0.3",
153
- "brace-expansion@5": "^5.0.5",
154
- "devalue": "^5.6.4",
155
- "flatted": "^3.4.2",
156
- "h3": "^1.15.6",
157
- "hono": "^4.12.7",
158
- "path-to-regexp": "^8.4.0",
159
- "picomatch@2": "^2.3.2",
160
- "picomatch@3": "^3.0.2",
161
- "picomatch@4": "^4.0.4",
162
- "smol-toml": "^1.6.1",
163
- "tar": "^7.5.11",
164
- "undici": "^7.24.0",
165
- "yaml@1": "^1.10.3",
166
- "yaml@2": "^2.8.3"
167
- }
168
129
  }
169
130
  }