create-outsystems-astro 0.7.0 → 0.7.2
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/package.json +1 -1
- package/template/bun.lock +165 -233
- package/template/deno.json +17 -1
- package/template/deno.lock +286 -229
- package/template/package-lock.json +217 -289
- package/template/package.json +67 -19
- package/template/pnpm-lock.yaml +395 -357
- package/template/src/framework/preact/Demo.tsx +5 -6
- package/template/src/framework/react/Demo.tsx +4 -2
- package/template/src/framework/svelte/Demo.svelte +2 -2
- package/template/src/framework/vue/Demo.vue +3 -2
- package/template/src/pages/angular/angular-demo.astro +1 -1
- package/template/src/pages/preact/preact-demo.astro +2 -3
- package/template/src/pages/react/react-demo.astro +2 -3
- package/template/src/pages/svelte/svelte-demo.astro +2 -3
- package/template/src/pages/vue/vue-demo.astro +2 -3
- package/template/src/stores/demo.ts +14 -0
- package/template/yarn.lock +154 -154
- package/template/src/stores/.gitkeep +0 -0
- /package/template/patches/{@angular+build+21.2.1.patch → @angular+build+21.2.2.patch} +0 -0
package/template/package.json
CHANGED
|
@@ -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,15 +31,12 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@analogjs/astro-angular": "^2.3.1",
|
|
34
|
-
"@angular/animations": "^21.2.
|
|
35
|
-
"@angular/
|
|
36
|
-
"@angular/
|
|
37
|
-
"@angular/
|
|
38
|
-
"@angular/
|
|
39
|
-
"@angular/
|
|
40
|
-
"@angular/language-service": "^21.2.1",
|
|
41
|
-
"@angular/platform-browser": "^21.2.1",
|
|
42
|
-
"@angular/platform-server": "^21.2.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",
|
|
43
40
|
"@astrojs/preact": "^4.1.3",
|
|
44
41
|
"@astrojs/react": "^4.4.2",
|
|
45
42
|
"@astrojs/svelte": "^7.2.5",
|
|
@@ -47,22 +44,26 @@
|
|
|
47
44
|
"@nanostores/preact": "^1.0.0",
|
|
48
45
|
"@nanostores/react": "^1.0.0",
|
|
49
46
|
"@nanostores/vue": "^1.1.0",
|
|
50
|
-
"astro": "^5.18.
|
|
47
|
+
"astro": "^5.18.1",
|
|
51
48
|
"nanostores": "^1.1.1",
|
|
52
49
|
"preact": "^10.28.4",
|
|
53
50
|
"react": "^19.2.4",
|
|
54
51
|
"react-dom": "^19.2.4",
|
|
55
52
|
"rxjs": "^7.8.2",
|
|
56
53
|
"svelte": "^5.53.7",
|
|
54
|
+
"tslib": "^2.8.1",
|
|
57
55
|
"vue": "^3.5.29"
|
|
58
56
|
},
|
|
59
57
|
"devDependencies": {
|
|
60
58
|
"@analogjs/vite-plugin-angular": "^2.3.1",
|
|
61
59
|
"@analogjs/vitest-angular": "^2.3.1",
|
|
62
|
-
"@angular-devkit/architect": "^0.2102.
|
|
63
|
-
"@angular-devkit/schematics": "^21.2.
|
|
64
|
-
"@angular/
|
|
65
|
-
"@angular/
|
|
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",
|
|
66
67
|
"@babel/core": "^7.29.0",
|
|
67
68
|
"@eslint/compat": "^2.0.3",
|
|
68
69
|
"@eslint/eslintrc": "^3.3.5",
|
|
@@ -103,7 +104,7 @@
|
|
|
103
104
|
"eslint-plugin-testing-library": "^7.16.0",
|
|
104
105
|
"eslint-plugin-vue": "^10.8.0",
|
|
105
106
|
"globals": "^17.4.0",
|
|
106
|
-
"happy-dom": "^20.8.
|
|
107
|
+
"happy-dom": "^20.8.8",
|
|
107
108
|
"improved-yarn-audit": "^3.0.4",
|
|
108
109
|
"js-beautify": "^1.15.4",
|
|
109
110
|
"patch-package": "^8.0.1",
|
|
@@ -111,11 +112,58 @@
|
|
|
111
112
|
"prettier-plugin-svelte": "^3.5.1",
|
|
112
113
|
"svelte-eslint-parser": "^1.6.0",
|
|
113
114
|
"ts-node": "^10.9.2",
|
|
114
|
-
"tslib": "^2.8.1",
|
|
115
115
|
"typescript": "^5.9.3",
|
|
116
116
|
"typescript-eslint": "^8.56.1",
|
|
117
117
|
"vite": "^6.4.1",
|
|
118
118
|
"vitest": "^4.0.18",
|
|
119
119
|
"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
|
+
}
|
|
120
168
|
}
|
|
121
169
|
}
|