create-outsystems-astro 0.7.1 → 0.8.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 (41) 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 +663 -204
  9. package/template/deno.json +1 -6
  10. package/template/deno.lock +936 -468
  11. package/template/eslint.config.mjs +5 -0
  12. package/template/package-lock.json +9358 -5653
  13. package/template/package.json +48 -63
  14. package/template/pnpm-lock.yaml +1672 -792
  15. package/template/src/framework/preact/Demo.tsx +5 -6
  16. package/template/src/framework/react/Demo.tsx +4 -2
  17. package/template/src/framework/solid/Demo.tsx +85 -0
  18. package/template/src/framework/solid/Store.tsx +31 -0
  19. package/template/src/framework/svelte/Demo.svelte +2 -2
  20. package/template/src/framework/vue/Demo.vue +3 -2
  21. package/template/src/images/solid.png +0 -0
  22. package/template/src/pages/angular/angular-demo.astro +1 -1
  23. package/template/src/pages/multi/store.astro +3 -1
  24. package/template/src/pages/preact/preact-demo.astro +2 -3
  25. package/template/src/pages/react/react-demo.astro +2 -3
  26. package/template/src/pages/solid/solid-demo.astro +65 -0
  27. package/template/src/pages/svelte/svelte-demo.astro +2 -3
  28. package/template/src/pages/vue/vue-demo.astro +2 -3
  29. package/template/src/stores/demo.ts +14 -0
  30. package/template/src/stores/framework.ts +1 -0
  31. package/template/test/e2e/solid/solid-demo.spec.ts +42 -0
  32. package/template/test/integration/solid/Demo.test.tsx +90 -0
  33. package/template/vitest.config.ts +12 -0
  34. package/template/yarn.lock +999 -446
  35. package/template/src/stores/.gitkeep +0 -0
  36. /package/template/patches/{@angular+build+21.2.2.patch → @angular+build+21.2.5.patch} +0 -0
  37. /package/template/test/e2e/angular/{angular-counter.spec.ts → angular-demo.spec.ts} +0 -0
  38. /package/template/test/e2e/preact/{preact-counter.spec.ts → preact-demo.spec.ts} +0 -0
  39. /package/template/test/e2e/react/{react-counter.spec.ts → react-demo.spec.ts} +0 -0
  40. /package/template/test/e2e/svelte/{svelte-counter.spec.ts → svelte-demo.spec.ts} +0 -0
  41. /package/template/test/e2e/vue/{vue-counter.spec.ts → vue-demo.spec.ts} +0 -0
@@ -14,9 +14,9 @@
14
14
  "format:write": "prettier --write .",
15
15
  "lint": "eslint",
16
16
  "lint:fix": "eslint --fix",
17
- "output": "astro build && ts-node ./output.ts",
18
- "output:bun": "astro build && bun run ./output.ts",
19
- "output:deno": "astro build && deno run -A ./output.ts",
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",
20
20
  "postinstall": "patch-package",
21
21
  "postinstall:deno": "patch-package && patch-package --patch-dir patches-deno",
22
22
  "preview": "astro preview",
@@ -31,48 +31,53 @@
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
- "astro": "^5.18.0",
48
- "nanostores": "^1.1.1",
49
- "preact": "^10.28.4",
49
+ "astro": "^5.18.1",
50
+ "nanostores": "^1.2.0",
51
+ "preact": "^10.29.0",
50
52
  "react": "^19.2.4",
51
53
  "react-dom": "^19.2.4",
52
54
  "rxjs": "^7.8.2",
53
- "svelte": "^5.53.7",
55
+ "solid-js": "^1.9.12",
56
+ "svelte": "^5.55.0",
54
57
  "tslib": "^2.8.1",
55
- "vue": "^3.5.29"
58
+ "vue": "^3.5.31"
56
59
  },
57
60
  "devDependencies": {
58
61
  "@analogjs/vite-plugin-angular": "^2.3.1",
59
62
  "@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",
63
+ "@angular-devkit/architect": "^0.2102.5",
64
+ "@angular-devkit/schematics": "^21.2.5",
65
+ "@angular/build": "^21.2.5",
66
+ "@angular/cli": "^21.2.5",
67
+ "@angular/compiler": "^21.2.6",
68
+ "@angular/compiler-cli": "^21.2.6",
69
+ "@angular/language-service": "^21.2.6",
67
70
  "@babel/core": "^7.29.0",
68
71
  "@eslint/compat": "^2.0.3",
69
72
  "@eslint/eslintrc": "^3.3.5",
70
73
  "@eslint/js": "^9.39.4",
71
- "@eslint/markdown": "^7.5.1",
74
+ "@eslint/markdown": "^8.0.0",
75
+ "@oxc-project/runtime": "^0.122.0",
72
76
  "@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",
77
+ "@preact/preset-vite": "^2.10.5",
78
+ "@solidjs/testing-library": "^0.8.10",
79
+ "@sveltejs/vite-plugin-svelte": "^7.0.0",
80
+ "@testing-library/angular": "^19.1.10",
76
81
  "@testing-library/dom": "^10.4.1",
77
82
  "@testing-library/jest-dom": "^6.9.1",
78
83
  "@testing-library/preact": "^3.2.4",
@@ -81,12 +86,12 @@
81
86
  "@testing-library/user-event": "^14.6.1",
82
87
  "@testing-library/vue": "^8.1.0",
83
88
  "@types/js-beautify": "^1.14.3",
84
- "@types/node": "^25.3.5",
89
+ "@types/node": "^25.5.0",
85
90
  "@types/react": "^19.2.14",
86
91
  "@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",
92
+ "@vitejs/plugin-react": "^6.0.1",
93
+ "@vitejs/plugin-vue": "^6.0.5",
94
+ "angular-eslint": "^21.3.1",
90
95
  "better-npm-audit": "^3.11.0",
91
96
  "dotenv": "^17.3.1",
92
97
  "eslint": "^9.39.4",
@@ -94,51 +99,31 @@
94
99
  "eslint-config-prettier": "^10.1.8",
95
100
  "eslint-plugin-astro": "^1.6.0",
96
101
  "eslint-plugin-import": "^2.32.0",
97
- "eslint-plugin-jest": "^29.15.0",
102
+ "eslint-plugin-jest": "^29.15.1",
98
103
  "eslint-plugin-jest-dom": "^5.5.0",
99
- "eslint-plugin-perfectionist": "^5.6.0",
100
- "eslint-plugin-playwright": "^2.9.0",
104
+ "eslint-plugin-perfectionist": "^5.7.0",
105
+ "eslint-plugin-playwright": "^2.10.1",
101
106
  "eslint-plugin-react": "^7.37.5",
102
107
  "eslint-plugin-react-hooks": "^7.0.1",
103
- "eslint-plugin-svelte": "^3.15.0",
104
- "eslint-plugin-testing-library": "^7.16.0",
108
+ "eslint-plugin-solid": "^0.14.5",
109
+ "eslint-plugin-svelte": "^3.16.0",
110
+ "eslint-plugin-testing-library": "^7.16.2",
105
111
  "eslint-plugin-vue": "^10.8.0",
106
112
  "globals": "^17.4.0",
107
- "happy-dom": "^20.8.3",
113
+ "happy-dom": "^20.8.9",
108
114
  "improved-yarn-audit": "^3.0.4",
109
115
  "js-beautify": "^1.15.4",
110
116
  "patch-package": "^8.0.1",
111
117
  "prettier": "^3.8.1",
118
+ "prettier-plugin-solidity": "^2.3.1",
112
119
  "prettier-plugin-svelte": "^3.5.1",
113
120
  "svelte-eslint-parser": "^1.6.0",
114
121
  "ts-node": "^10.9.2",
115
122
  "typescript": "^5.9.3",
116
- "typescript-eslint": "^8.56.1",
117
- "vite": "^6.4.1",
118
- "vitest": "^4.0.18",
123
+ "typescript-eslint": "^8.57.2",
124
+ "vite": "^8.0.1",
125
+ "vite-plugin-solid": "^2.11.11",
126
+ "vitest": "^4.1.2",
119
127
  "vue-eslint-parser": "^10.4.0"
120
- },
121
- "overrides": {
122
- "devalue": "^5.6.4",
123
- "flatted": "^3.4.0",
124
- "hono": "^4.12.7",
125
- "tar": "^7.5.11",
126
- "undici": "^7.24.0"
127
- },
128
- "resolutions": {
129
- "devalue": "^5.6.4",
130
- "flatted": "^3.4.0",
131
- "hono": "^4.12.7",
132
- "tar": "^7.5.11",
133
- "undici": "^7.24.0"
134
- },
135
- "pnpm": {
136
- "overrides": {
137
- "devalue": "^5.6.4",
138
- "flatted": "^3.4.0",
139
- "hono": "^4.12.7",
140
- "tar": "^7.5.11",
141
- "undici": "^7.24.0"
142
- }
143
128
  }
144
129
  }