create-outsystems-astro 0.7.2 → 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.
- package/README.md +1 -0
- package/bin/cli.js +10 -1
- package/package.json +1 -1
- package/template/.github/workflows/test.yml +13 -13
- package/template/.prettierrc +1 -1
- package/template/AGENTS.md +74 -2
- package/template/astro.config.mjs +5 -0
- package/template/bun.lock +640 -190
- package/template/deno.json +1 -17
- package/template/deno.lock +889 -461
- package/template/eslint.config.mjs +5 -0
- package/template/package-lock.json +7593 -3817
- package/template/package.json +44 -84
- package/template/pnpm-lock.yaml +1602 -733
- package/template/src/framework/solid/Demo.tsx +85 -0
- package/template/src/framework/solid/Store.tsx +31 -0
- package/template/src/images/solid.png +0 -0
- package/template/src/pages/multi/store.astro +3 -1
- package/template/src/pages/solid/solid-demo.astro +65 -0
- package/template/src/stores/framework.ts +1 -0
- package/template/test/e2e/solid/solid-demo.spec.ts +42 -0
- package/template/test/integration/solid/Demo.test.tsx +90 -0
- package/template/vitest.config.ts +12 -0
- package/template/yarn.lock +945 -392
- /package/template/patches/{@angular+build+21.2.2.patch → @angular+build+21.2.5.patch} +0 -0
- /package/template/test/e2e/angular/{angular-counter.spec.ts → angular-demo.spec.ts} +0 -0
- /package/template/test/e2e/preact/{preact-counter.spec.ts → preact-demo.spec.ts} +0 -0
- /package/template/test/e2e/react/{react-counter.spec.ts → react-demo.spec.ts} +0 -0
- /package/template/test/e2e/svelte/{svelte-counter.spec.ts → svelte-demo.spec.ts} +0 -0
- /package/template/test/e2e/vue/{vue-counter.spec.ts → vue-demo.spec.ts} +0 -0
package/template/package.json
CHANGED
|
@@ -31,48 +31,53 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@analogjs/astro-angular": "^2.3.1",
|
|
34
|
-
"@angular/animations": "^21.2.
|
|
35
|
-
"@angular/common": "^21.2.
|
|
36
|
-
"@angular/core": "^21.2.
|
|
37
|
-
"@angular/platform-browser": "^21.2.
|
|
38
|
-
"@angular/platform-server": "^21.2.
|
|
39
|
-
"@angular/router": "^21.2.
|
|
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.
|
|
45
|
-
"@nanostores/react": "^1.
|
|
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.
|
|
49
|
-
"preact": "^10.
|
|
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
|
-
"
|
|
55
|
+
"solid-js": "^1.9.12",
|
|
56
|
+
"svelte": "^5.55.0",
|
|
54
57
|
"tslib": "^2.8.1",
|
|
55
|
-
"vue": "^3.5.
|
|
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.
|
|
61
|
-
"@angular-devkit/schematics": "^21.2.
|
|
62
|
-
"@angular/build": "^21.2.
|
|
63
|
-
"@angular/cli": "^21.2.
|
|
64
|
-
"@angular/compiler": "^21.2.
|
|
65
|
-
"@angular/compiler-cli": "^21.2.
|
|
66
|
-
"@angular/language-service": "^21.2.
|
|
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": "^
|
|
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.
|
|
74
|
-
"@
|
|
75
|
-
"@
|
|
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.
|
|
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": "^
|
|
88
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
89
|
-
"angular-eslint": "^21.3.
|
|
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,76 +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.
|
|
102
|
+
"eslint-plugin-jest": "^29.15.1",
|
|
98
103
|
"eslint-plugin-jest-dom": "^5.5.0",
|
|
99
|
-
"eslint-plugin-perfectionist": "^5.
|
|
100
|
-
"eslint-plugin-playwright": "^2.
|
|
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-
|
|
104
|
-
"eslint-plugin-
|
|
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.
|
|
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.
|
|
117
|
-
"vite": "^
|
|
118
|
-
"
|
|
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
|
-
"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
128
|
}
|
|
169
129
|
}
|