create-outsystems-astro 0.11.0 → 0.11.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/integrations/.yarnrc.yml +29 -0
- package/integrations/bun.lock +60 -55
- package/integrations/deno.json +39 -2
- package/integrations/deno.lock +249 -232
- package/integrations/package-lock.json +337 -237
- package/integrations/package.json +14 -4
- package/integrations/pnpm-lock.yaml +495 -490
- package/integrations/pnpm-workspace.yaml +33 -0
- package/integrations/yarn.lock +486 -489
- package/package.json +1 -1
- package/template/.yarnrc.yml +33 -1
- package/template/bun.lock +1445 -1364
- package/template/deno.json +48 -4
- package/template/deno.lock +657 -608
- package/template/package-lock.json +1646 -4223
- package/template/package.json +53 -40
- package/template/pnpm-lock.yaml +1770 -2005
- package/template/pnpm-workspace.yaml +41 -2
- package/template/yarn.lock +1290 -1556
- /package/template/patches/{@analogjs+astro-angular+2.5.2.patch → @analogjs+astro-angular+2.6.0.patch} +0 -0
- /package/template/patches/{@angular+build+21.2.12.patch → @angular+build+21.2.16.patch} +0 -0
package/template/deno.json
CHANGED
|
@@ -1,6 +1,50 @@
|
|
|
1
1
|
{
|
|
2
|
-
"allowScripts": ["npm:@parcel/watcher@2.5.6", "npm:esbuild@0.27.3", "npm:fsevents@2.3.2", "npm:fsevents@2.3.3", "npm:lmdb@3.5.1", "npm:msgpackr-extract@3.0.3", "npm:msgpackr-extract@3.0.4", "npm:sharp@0.34.5"],
|
|
3
2
|
"imports": {
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
"@babel/core": "npm:@babel/core@^7.29.7",
|
|
4
|
+
"astro": "npm:astro@^6.4.6",
|
|
5
|
+
"esbuild": "npm:esbuild@^0.28.1",
|
|
6
|
+
"hono": "npm:hono@^4.12.25",
|
|
7
|
+
"js-yaml": "npm:js-yaml@^4.2.0",
|
|
8
|
+
"tar": "npm:tar@^7.5.16",
|
|
9
|
+
"vite@7.0.0 - 7.3.4": "npm:vite@7.3.5"
|
|
10
|
+
},
|
|
11
|
+
"minimumDependencyAge": {
|
|
12
|
+
"age": "P7D",
|
|
13
|
+
"exclude": [
|
|
14
|
+
"npm:@angular-devkit/architect",
|
|
15
|
+
"npm:@angular/build",
|
|
16
|
+
"npm:@angular/cli",
|
|
17
|
+
"npm:@angular-devkit/core",
|
|
18
|
+
"npm:@angular-devkit/schematics",
|
|
19
|
+
"npm:@esbuild/aix-ppc64",
|
|
20
|
+
"npm:@esbuild/android-arm64",
|
|
21
|
+
"npm:@esbuild/android-arm",
|
|
22
|
+
"npm:@esbuild/android-x64",
|
|
23
|
+
"npm:@esbuild/darwin-arm64",
|
|
24
|
+
"npm:@esbuild/darwin-x64",
|
|
25
|
+
"npm:@esbuild/freebsd-arm64",
|
|
26
|
+
"npm:@esbuild/freebsd-x64",
|
|
27
|
+
"npm:@esbuild/linux-arm64",
|
|
28
|
+
"npm:@esbuild/linux-arm",
|
|
29
|
+
"npm:@esbuild/linux-ia32",
|
|
30
|
+
"npm:@esbuild/linux-loong64",
|
|
31
|
+
"npm:@esbuild/linux-mips64el",
|
|
32
|
+
"npm:@esbuild/linux-ppc64",
|
|
33
|
+
"npm:@esbuild/linux-riscv64",
|
|
34
|
+
"npm:@esbuild/linux-s390x",
|
|
35
|
+
"npm:@esbuild/linux-x64",
|
|
36
|
+
"npm:@esbuild/netbsd-arm64",
|
|
37
|
+
"npm:@esbuild/netbsd-x64",
|
|
38
|
+
"npm:@esbuild/openbsd-arm64",
|
|
39
|
+
"npm:@esbuild/openbsd-x64",
|
|
40
|
+
"npm:@esbuild/openharmony-arm64",
|
|
41
|
+
"npm:@esbuild/sunos-x64",
|
|
42
|
+
"npm:@esbuild/win32-arm64",
|
|
43
|
+
"npm:@esbuild/win32-ia32",
|
|
44
|
+
"npm:@esbuild/win32-x64",
|
|
45
|
+
"npm:@schematics/angular",
|
|
46
|
+
"npm:esbuild"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
"allowScripts": ["npm:@parcel/watcher@2.5.6", "npm:esbuild@0.28.1", "npm:fsevents@2.3.2", "npm:fsevents@2.3.3", "npm:lmdb@3.5.1", "npm:msgpackr-extract@3.0.4", "npm:sharp@0.34.5"]
|
|
50
|
+
}
|