create-outsystems-astro 0.8.2 → 0.9.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 -1
- package/bin/cli.js +25 -0
- package/package.json +1 -1
- package/template/.github/workflows/bun-test.yml +127 -0
- package/template/.github/workflows/deno-test.yml +127 -0
- package/template/.github/workflows/{test.yml → npm-test.yml} +7 -7
- package/template/.github/workflows/pnpm-test.yml +158 -0
- package/template/.github/workflows/yarn-test.yml +145 -0
- package/template/astro.config.mjs +4 -3
- package/template/bun.lock +516 -864
- package/template/deno.json +1 -9
- package/template/deno.lock +1253 -1406
- package/template/package-lock.json +7225 -9312
- package/template/package.json +63 -82
- package/template/patches/@analogjs+astro-angular+2.5.1.patch +26 -0
- package/template/pnpm-lock.yaml +2557 -2572
- package/template/pnpm-workspace.yaml +6 -6
- package/template/yarn.lock +2737 -2961
- package/template/patches/@analogjs+astro-angular+2.3.1.patch +0 -13
- package/template/patches-deno/playwright+1.58.2.patch +0 -26
- /package/template/patches/{@angular+build+21.2.5.patch → @angular+build+21.2.11.patch} +0 -0
package/template/package.json
CHANGED
|
@@ -15,68 +15,69 @@
|
|
|
15
15
|
"lint": "eslint",
|
|
16
16
|
"lint:fix": "eslint --fix",
|
|
17
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",
|
|
18
|
+
"output:bun": "cross-env NODE_ENV=production bun run --bun astro build && bun run ./output.ts",
|
|
19
|
+
"output:deno": "cross-env NODE_ENV=production deno run -A npm:astro build && deno run -A ./output.ts",
|
|
20
20
|
"postinstall": "patch-package",
|
|
21
|
-
"postinstall:deno": "patch-package && patch-package --patch-dir patches-deno",
|
|
22
21
|
"preview": "astro preview",
|
|
23
22
|
"test": "vitest",
|
|
24
23
|
"test:e2e": "playwright test",
|
|
24
|
+
"test:e2e:bun": "bun run --bun playwright test",
|
|
25
25
|
"test:e2e:deno": "cross-env PW_DISABLE_TS_ESM=true deno run --allow-all npm:playwright test",
|
|
26
|
-
"test:e2e:ui": "playwright test --ui",
|
|
26
|
+
"test:e2e:ui": "bun run --bun playwright test --ui",
|
|
27
|
+
"test:e2e:ui:bun": "playwright test --ui",
|
|
27
28
|
"test:e2e:ui:deno": "cross-env PW_DISABLE_TS_ESM=true deno run --allow-all npm:playwright test --ui",
|
|
28
29
|
"test:e2e:install": "playwright install --with-deps",
|
|
29
30
|
"test:run": "vitest run",
|
|
30
31
|
"typecheck": "tsc"
|
|
31
32
|
},
|
|
32
33
|
"dependencies": {
|
|
33
|
-
"@analogjs/astro-angular": "^2.
|
|
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.
|
|
40
|
-
"@astrojs/preact": "^
|
|
41
|
-
"@astrojs/react": "^
|
|
42
|
-
"@astrojs/solid-js": "^
|
|
43
|
-
"@astrojs/svelte": "^
|
|
44
|
-
"@astrojs/vue": "^
|
|
34
|
+
"@analogjs/astro-angular": "^2.5.1",
|
|
35
|
+
"@angular/animations": "^21.2.13",
|
|
36
|
+
"@angular/common": "^21.2.13",
|
|
37
|
+
"@angular/core": "^21.2.13",
|
|
38
|
+
"@angular/platform-browser": "^21.2.13",
|
|
39
|
+
"@angular/platform-server": "^21.2.13",
|
|
40
|
+
"@angular/router": "^21.2.13",
|
|
41
|
+
"@astrojs/preact": "^5.1.3",
|
|
42
|
+
"@astrojs/react": "^5.0.5",
|
|
43
|
+
"@astrojs/solid-js": "^6.0.1",
|
|
44
|
+
"@astrojs/svelte": "^8.1.1",
|
|
45
|
+
"@astrojs/vue": "^6.0.1",
|
|
45
46
|
"@nanostores/preact": "^1.1.0",
|
|
46
47
|
"@nanostores/react": "^1.1.0",
|
|
47
48
|
"@nanostores/solid": "^1.1.1",
|
|
48
49
|
"@nanostores/vue": "^1.1.0",
|
|
49
|
-
"astro": "^
|
|
50
|
-
"nanostores": "^1.
|
|
51
|
-
"preact": "^10.29.
|
|
52
|
-
"react": "^19.2.
|
|
53
|
-
"react-dom": "^19.2.
|
|
50
|
+
"astro": "^6.3.3",
|
|
51
|
+
"nanostores": "^1.3.0",
|
|
52
|
+
"preact": "^10.29.1",
|
|
53
|
+
"react": "^19.2.6",
|
|
54
|
+
"react-dom": "^19.2.6",
|
|
54
55
|
"rxjs": "^7.8.2",
|
|
55
56
|
"solid-js": "^1.9.12",
|
|
56
|
-
"svelte": "^5.55.
|
|
57
|
+
"svelte": "^5.55.7",
|
|
57
58
|
"tslib": "^2.8.1",
|
|
58
|
-
"vue": "^3.5.
|
|
59
|
+
"vue": "^3.5.34"
|
|
59
60
|
},
|
|
60
61
|
"devDependencies": {
|
|
61
|
-
"@analogjs/vite-plugin-angular": "^2.
|
|
62
|
-
"@analogjs/vitest-angular": "^2.
|
|
63
|
-
"@angular-devkit/architect": "^0.2102.
|
|
64
|
-
"@angular-devkit/schematics": "^21.2.
|
|
65
|
-
"@angular/build": "^21.2.
|
|
66
|
-
"@angular/cli": "^21.2.
|
|
67
|
-
"@angular/compiler": "^21.2.
|
|
68
|
-
"@angular/compiler-cli": "^21.2.
|
|
69
|
-
"@angular/language-service": "^21.2.
|
|
62
|
+
"@analogjs/vite-plugin-angular": "^2.5.1",
|
|
63
|
+
"@analogjs/vitest-angular": "^2.5.1",
|
|
64
|
+
"@angular-devkit/architect": "^0.2102.11",
|
|
65
|
+
"@angular-devkit/schematics": "^21.2.11",
|
|
66
|
+
"@angular/build": "^21.2.11",
|
|
67
|
+
"@angular/cli": "^21.2.11",
|
|
68
|
+
"@angular/compiler": "^21.2.13",
|
|
69
|
+
"@angular/compiler-cli": "^21.2.13",
|
|
70
|
+
"@angular/language-service": "^21.2.13",
|
|
70
71
|
"@babel/core": "^7.29.0",
|
|
71
|
-
"@eslint/compat": "^2.0
|
|
72
|
+
"@eslint/compat": "^2.1.0",
|
|
72
73
|
"@eslint/eslintrc": "^3.3.5",
|
|
73
74
|
"@eslint/js": "^9.39.4",
|
|
74
|
-
"@eslint/markdown": "^8.0.
|
|
75
|
-
"@oxc-project/runtime": "^0.
|
|
76
|
-
"@playwright/test": "1.
|
|
75
|
+
"@eslint/markdown": "^8.0.1",
|
|
76
|
+
"@oxc-project/runtime": "^0.130.0",
|
|
77
|
+
"@playwright/test": "1.60.0",
|
|
77
78
|
"@preact/preset-vite": "^2.10.5",
|
|
78
79
|
"@solidjs/testing-library": "^0.8.10",
|
|
79
|
-
"@sveltejs/vite-plugin-svelte": "^7.
|
|
80
|
+
"@sveltejs/vite-plugin-svelte": "^7.1.2",
|
|
80
81
|
"@testing-library/angular": "^19.1.10",
|
|
81
82
|
"@testing-library/dom": "^10.4.1",
|
|
82
83
|
"@testing-library/jest-dom": "^6.9.1",
|
|
@@ -86,76 +87,56 @@
|
|
|
86
87
|
"@testing-library/user-event": "^14.6.1",
|
|
87
88
|
"@testing-library/vue": "^8.1.0",
|
|
88
89
|
"@types/js-beautify": "^1.14.3",
|
|
89
|
-
"@types/node": "^25.
|
|
90
|
+
"@types/node": "^25.8.0",
|
|
90
91
|
"@types/react": "^19.2.14",
|
|
91
92
|
"@types/react-dom": "^19.2.3",
|
|
92
|
-
"@vitejs/plugin-react": "^6.0.
|
|
93
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
94
|
-
"angular-eslint": "^21.
|
|
93
|
+
"@vitejs/plugin-react": "^6.0.2",
|
|
94
|
+
"@vitejs/plugin-vue": "^6.0.7",
|
|
95
|
+
"angular-eslint": "^21.4.0",
|
|
95
96
|
"better-npm-audit": "^3.11.0",
|
|
96
97
|
"cross-env": "^10.1.0",
|
|
97
|
-
"dotenv": "^17.
|
|
98
|
+
"dotenv": "^17.4.2",
|
|
98
99
|
"eslint": "^9.39.4",
|
|
99
100
|
"eslint-config-preact": "^2.0.0",
|
|
100
101
|
"eslint-config-prettier": "^10.1.8",
|
|
101
|
-
"eslint-plugin-astro": "^1.
|
|
102
|
+
"eslint-plugin-astro": "^1.7.0",
|
|
102
103
|
"eslint-plugin-import": "^2.32.0",
|
|
103
|
-
"eslint-plugin-jest": "^29.15.
|
|
104
|
+
"eslint-plugin-jest": "^29.15.2",
|
|
104
105
|
"eslint-plugin-jest-dom": "^5.5.0",
|
|
105
|
-
"eslint-plugin-perfectionist": "^5.
|
|
106
|
-
"eslint-plugin-playwright": "^2.10.
|
|
106
|
+
"eslint-plugin-perfectionist": "^5.9.0",
|
|
107
|
+
"eslint-plugin-playwright": "^2.10.2",
|
|
107
108
|
"eslint-plugin-react": "^7.37.5",
|
|
108
|
-
"eslint-plugin-react-hooks": "^7.
|
|
109
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
109
110
|
"eslint-plugin-solid": "^0.14.5",
|
|
110
|
-
"eslint-plugin-svelte": "^3.
|
|
111
|
+
"eslint-plugin-svelte": "^3.17.1",
|
|
111
112
|
"eslint-plugin-testing-library": "^7.16.2",
|
|
112
|
-
"eslint-plugin-vue": "^10.
|
|
113
|
-
"globals": "^17.
|
|
114
|
-
"happy-dom": "^20.
|
|
113
|
+
"eslint-plugin-vue": "^10.9.1",
|
|
114
|
+
"globals": "^17.6.0",
|
|
115
|
+
"happy-dom": "^20.9.0",
|
|
115
116
|
"improved-yarn-audit": "^3.0.4",
|
|
116
117
|
"js-beautify": "^1.15.4",
|
|
117
118
|
"patch-package": "^8.0.1",
|
|
118
|
-
"prettier": "^3.8.
|
|
119
|
+
"prettier": "^3.8.3",
|
|
119
120
|
"prettier-plugin-solidity": "^2.3.1",
|
|
120
|
-
"prettier-plugin-svelte": "^3.5.
|
|
121
|
-
"svelte-eslint-parser": "^1.6.
|
|
121
|
+
"prettier-plugin-svelte": "^3.5.2",
|
|
122
|
+
"svelte-eslint-parser": "^1.6.1",
|
|
122
123
|
"ts-node": "^10.9.2",
|
|
123
124
|
"typescript": "^5.9.3",
|
|
124
|
-
"typescript-eslint": "^8.
|
|
125
|
-
"vite
|
|
126
|
-
"vite": "^
|
|
127
|
-
"vitest": "^4.1.
|
|
125
|
+
"typescript-eslint": "^8.59.3",
|
|
126
|
+
"vite": "^8.0.13",
|
|
127
|
+
"vite-plugin-solid": "^2.11.12",
|
|
128
|
+
"vitest": "^4.1.6",
|
|
128
129
|
"vue-eslint-parser": "^10.4.0"
|
|
129
130
|
},
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
"@vue/devtools-core": {
|
|
133
|
-
"vite": "^7.3.2"
|
|
134
|
-
},
|
|
135
|
-
"defu": "^6.1.5",
|
|
136
|
-
"hono": "^4.12.12",
|
|
137
|
-
"vite@6": "^6.4.2",
|
|
138
|
-
"vite@7": "^7.3.2"
|
|
131
|
+
"overrides": {
|
|
132
|
+
"devalue": "^5.8.1"
|
|
139
133
|
},
|
|
140
134
|
"resolutions": {
|
|
141
|
-
|
|
142
|
-
"defu": "^6.1.5",
|
|
143
|
-
"hono": "^4.12.12"
|
|
135
|
+
"devalue": "^5.8.1"
|
|
144
136
|
},
|
|
145
137
|
"pnpm": {
|
|
146
138
|
"overrides": {
|
|
147
|
-
"
|
|
148
|
-
"@astrojs/preact>vite": "^6.4.2",
|
|
149
|
-
"@astrojs/react>vite": "^6.4.2",
|
|
150
|
-
"@astrojs/solid-js>vite": "^6.4.2",
|
|
151
|
-
"@astrojs/svelte>vite": "^6.4.2",
|
|
152
|
-
"@astrojs/vue>vite": "^6.4.2",
|
|
153
|
-
"@hono/node-server": "^1.19.13",
|
|
154
|
-
"@vue/devtools-core>vite": "^7.3.2",
|
|
155
|
-
"astro>vite": "^6.4.2",
|
|
156
|
-
"defu": "^6.1.5",
|
|
157
|
-
"hono": "^4.12.12",
|
|
158
|
-
"vitest>vite": "^8.0.8"
|
|
139
|
+
"devalue": "^5.8.1"
|
|
159
140
|
}
|
|
160
141
|
}
|
|
161
142
|
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
diff --git a/node_modules/@analogjs/astro-angular/src/index.js b/node_modules/@analogjs/astro-angular/src/index.js
|
|
2
|
+
index 277cc8d..059ed0f 100644
|
|
3
|
+
--- a/node_modules/@analogjs/astro-angular/src/index.js
|
|
4
|
+
+++ b/node_modules/@analogjs/astro-angular/src/index.js
|
|
5
|
+
@@ -15,17 +15,18 @@ function getRenderer(ngHydration) {
|
|
6
|
+
function getViteConfiguration(options) {
|
|
7
|
+
return {
|
|
8
|
+
esbuild: {
|
|
9
|
+
- jsxDev: true,
|
|
10
|
+
+ jsxDev: false,
|
|
11
|
+
},
|
|
12
|
+
optimizeDeps: {
|
|
13
|
+
include: [
|
|
14
|
+
- '@angular/platform-browser',
|
|
15
|
+
- '@angular/core',
|
|
16
|
+
options?.useAngularHydration
|
|
17
|
+
? '@analogjs/astro-angular/client-ngh.js'
|
|
18
|
+
: '@analogjs/astro-angular/client.js',
|
|
19
|
+
],
|
|
20
|
+
exclude: [
|
|
21
|
+
+ '@angular/core',
|
|
22
|
+
+ '@angular/common',
|
|
23
|
+
+ '@angular/platform-browser',
|
|
24
|
+
'@angular/platform-server',
|
|
25
|
+
'@analogjs/astro-angular/server.js',
|
|
26
|
+
'@analogjs/astro-angular/server-ngh.js',
|