create-outsystems-astro 0.9.0 → 0.11.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/bin/cli.js +42 -1
- package/integrations/.prettierignore +15 -0
- package/integrations/.yarn/releases/yarn-4.15.0.cjs +940 -0
- package/integrations/.yarnrc.yml +6 -0
- package/integrations/bun.lock +1250 -0
- package/integrations/bunfig.toml +3 -0
- package/integrations/deno.json +4 -0
- package/integrations/deno.lock +3943 -0
- package/integrations/eslint.config.mjs +61 -0
- package/integrations/html/client.ts +30 -0
- package/integrations/html/index.ts +57 -0
- package/integrations/html/server.ts +54 -0
- package/integrations/package-lock.json +8926 -0
- package/integrations/package.json +42 -0
- package/integrations/pnpm-lock.yaml +5562 -0
- package/integrations/pnpm-workspace.yaml +4 -0
- package/integrations/tsconfig.json +16 -0
- package/integrations/twig/client.ts +34 -0
- package/integrations/twig/index.ts +185 -0
- package/integrations/twig/server.ts +54 -0
- package/integrations/yarn.lock +6375 -0
- package/package.json +3 -1
- package/template/.github/workflows/deno-test.yml +1 -1
- package/template/.github/workflows/npm-test.yml +1 -1
- package/template/.github/workflows/pnpm-test.yml +2 -2
- package/template/.github/workflows/yarn-test.yml +26 -13
- package/template/.gitignore +4 -0
- package/template/.prettierignore +1 -0
- package/template/.yarn/releases/yarn-4.15.0.cjs +940 -0
- package/template/.yarnrc.yml +8 -0
- package/template/AGENTS.md +93 -1
- package/template/README.md +15 -0
- package/template/astro.config.mjs +8 -0
- package/template/bun.lock +281 -367
- package/template/bunfig.toml +3 -0
- package/template/deno.json +3 -11
- package/template/deno.lock +703 -676
- package/template/eslint.config.mjs +1 -0
- package/template/package-lock.json +705 -787
- package/template/package.json +38 -41
- package/template/pnpm-lock.yaml +1126 -1114
- package/template/pnpm-workspace.yaml +5 -0
- package/template/src/env.d.ts +6 -0
- package/template/src/framework/html/Demo.ts +105 -0
- package/template/src/framework/html/Store.ts +47 -0
- package/template/src/framework/twig/Demo.twig +100 -0
- package/template/src/framework/twig/Store.twig +45 -0
- package/template/src/images/html.png +0 -0
- package/template/src/images/twig.png +0 -0
- package/template/src/pages/html/html-demo.astro +61 -0
- package/template/src/pages/multi/store.astro +13 -1
- package/template/src/pages/twig/twig-demo.astro +65 -0
- package/template/src/stores/framework.ts +2 -0
- package/template/test/e2e/html/html-demo.spec.ts +36 -0
- package/template/test/e2e/twig/twig-demo.spec.ts +36 -0
- package/template/test/integration/html/Demo.test.ts +83 -0
- package/template/test/integration/twig/Demo.test.ts +84 -0
- package/template/tsconfig.json +1 -1
- package/template/vitest.config.ts +18 -0
- package/template/yarn.lock +14777 -10350
- /package/template/patches/{@analogjs+astro-angular+2.5.1.patch → @analogjs+astro-angular+2.5.2.patch} +0 -0
- /package/template/patches/{@angular+build+21.2.11.patch → @angular+build+21.2.12.patch} +0 -0
package/template/package.json
CHANGED
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
"audit:deno": "deno audit",
|
|
8
8
|
"audit:npm": "better-npm-audit audit",
|
|
9
9
|
"audit:pnpm": "pnpm audit",
|
|
10
|
-
"audit:yarn": "yarn
|
|
10
|
+
"audit:yarn": "yarn npm audit --no-deprecations",
|
|
11
11
|
"build": "astro build",
|
|
12
12
|
"dev": "astro dev",
|
|
13
13
|
"format": "prettier . --check",
|
|
14
14
|
"format:write": "prettier --write .",
|
|
15
|
-
"lint": "eslint",
|
|
16
|
-
"lint:fix": "eslint --fix",
|
|
15
|
+
"lint": "cross-env NODE_OPTIONS=--max-old-space-size=4096 eslint",
|
|
16
|
+
"lint:fix": "cross-env NODE_OPTIONS=--max-old-space-size=4096 eslint --fix",
|
|
17
17
|
"output": "cross-env NODE_ENV=production astro build && ts-node ./output.ts",
|
|
18
18
|
"output:bun": "cross-env NODE_ENV=production bun run --bun astro build && bun run ./output.ts",
|
|
19
19
|
"output:deno": "cross-env NODE_ENV=production deno run -A npm:astro build && deno run -A ./output.ts",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
"typecheck": "tsc"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@analogjs/astro-angular": "^2.5.
|
|
35
|
-
"@angular/animations": "^21.2.
|
|
36
|
-
"@angular/common": "^21.2.
|
|
37
|
-
"@angular/core": "^21.2.
|
|
38
|
-
"@angular/platform-browser": "^21.2.
|
|
39
|
-
"@angular/platform-server": "^21.2.
|
|
40
|
-
"@angular/router": "^21.2.
|
|
34
|
+
"@analogjs/astro-angular": "^2.5.2",
|
|
35
|
+
"@angular/animations": "^21.2.14",
|
|
36
|
+
"@angular/common": "^21.2.14",
|
|
37
|
+
"@angular/core": "^21.2.14",
|
|
38
|
+
"@angular/platform-browser": "^21.2.14",
|
|
39
|
+
"@angular/platform-server": "^21.2.14",
|
|
40
|
+
"@angular/router": "^21.2.14",
|
|
41
41
|
"@astrojs/preact": "^5.1.3",
|
|
42
42
|
"@astrojs/react": "^5.0.5",
|
|
43
43
|
"@astrojs/solid-js": "^6.0.1",
|
|
@@ -47,38 +47,40 @@
|
|
|
47
47
|
"@nanostores/react": "^1.1.0",
|
|
48
48
|
"@nanostores/solid": "^1.1.1",
|
|
49
49
|
"@nanostores/vue": "^1.1.0",
|
|
50
|
-
"astro": "^6.3.
|
|
50
|
+
"astro": "^6.3.7",
|
|
51
|
+
"islands-integrations": "file:./.integrations",
|
|
51
52
|
"nanostores": "^1.3.0",
|
|
52
|
-
"preact": "^10.29.
|
|
53
|
+
"preact": "^10.29.2",
|
|
53
54
|
"react": "^19.2.6",
|
|
54
55
|
"react-dom": "^19.2.6",
|
|
55
56
|
"rxjs": "^7.8.2",
|
|
56
|
-
"solid-js": "^1.9.
|
|
57
|
-
"svelte": "^5.55.
|
|
57
|
+
"solid-js": "^1.9.13",
|
|
58
|
+
"svelte": "^5.55.9",
|
|
58
59
|
"tslib": "^2.8.1",
|
|
60
|
+
"twig": "^3.0.0",
|
|
59
61
|
"vue": "^3.5.34"
|
|
60
62
|
},
|
|
61
63
|
"devDependencies": {
|
|
62
|
-
"@analogjs/vite-plugin-angular": "^2.5.
|
|
63
|
-
"@analogjs/vitest-angular": "^2.5.
|
|
64
|
-
"@angular-devkit/architect": "^0.2102.
|
|
65
|
-
"@angular-devkit/schematics": "^21.2.
|
|
66
|
-
"@angular/build": "^21.2.
|
|
67
|
-
"@angular/cli": "^21.2.
|
|
68
|
-
"@angular/compiler": "^21.2.
|
|
69
|
-
"@angular/compiler-cli": "^21.2.
|
|
70
|
-
"@angular/language-service": "^21.2.
|
|
64
|
+
"@analogjs/vite-plugin-angular": "^2.5.2",
|
|
65
|
+
"@analogjs/vitest-angular": "^2.5.2",
|
|
66
|
+
"@angular-devkit/architect": "^0.2102.12",
|
|
67
|
+
"@angular-devkit/schematics": "^21.2.12",
|
|
68
|
+
"@angular/build": "^21.2.12",
|
|
69
|
+
"@angular/cli": "^21.2.12",
|
|
70
|
+
"@angular/compiler": "^21.2.14",
|
|
71
|
+
"@angular/compiler-cli": "^21.2.14",
|
|
72
|
+
"@angular/language-service": "^21.2.14",
|
|
71
73
|
"@babel/core": "^7.29.0",
|
|
72
74
|
"@eslint/compat": "^2.1.0",
|
|
73
75
|
"@eslint/eslintrc": "^3.3.5",
|
|
74
76
|
"@eslint/js": "^9.39.4",
|
|
75
|
-
"@eslint/markdown": "^8.0.
|
|
76
|
-
"@oxc-project/runtime": "^0.
|
|
77
|
+
"@eslint/markdown": "^8.0.2",
|
|
78
|
+
"@oxc-project/runtime": "^0.132.0",
|
|
77
79
|
"@playwright/test": "1.60.0",
|
|
78
80
|
"@preact/preset-vite": "^2.10.5",
|
|
79
81
|
"@solidjs/testing-library": "^0.8.10",
|
|
80
82
|
"@sveltejs/vite-plugin-svelte": "^7.1.2",
|
|
81
|
-
"@testing-library/angular": "^19.
|
|
83
|
+
"@testing-library/angular": "^19.3.0",
|
|
82
84
|
"@testing-library/dom": "^10.4.1",
|
|
83
85
|
"@testing-library/jest-dom": "^6.9.1",
|
|
84
86
|
"@testing-library/preact": "^3.2.4",
|
|
@@ -87,9 +89,10 @@
|
|
|
87
89
|
"@testing-library/user-event": "^14.6.1",
|
|
88
90
|
"@testing-library/vue": "^8.1.0",
|
|
89
91
|
"@types/js-beautify": "^1.14.3",
|
|
90
|
-
"@types/node": "^25.
|
|
91
|
-
"@types/react": "^19.2.
|
|
92
|
+
"@types/node": "^25.9.1",
|
|
93
|
+
"@types/react": "^19.2.15",
|
|
92
94
|
"@types/react-dom": "^19.2.3",
|
|
95
|
+
"@types/twig": "^1.12.17",
|
|
93
96
|
"@vitejs/plugin-react": "^6.0.2",
|
|
94
97
|
"@vitejs/plugin-vue": "^6.0.7",
|
|
95
98
|
"angular-eslint": "^21.4.0",
|
|
@@ -104,7 +107,7 @@
|
|
|
104
107
|
"eslint-plugin-jest": "^29.15.2",
|
|
105
108
|
"eslint-plugin-jest-dom": "^5.5.0",
|
|
106
109
|
"eslint-plugin-perfectionist": "^5.9.0",
|
|
107
|
-
"eslint-plugin-playwright": "^2.10.
|
|
110
|
+
"eslint-plugin-playwright": "^2.10.4",
|
|
108
111
|
"eslint-plugin-react": "^7.37.5",
|
|
109
112
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
110
113
|
"eslint-plugin-solid": "^0.14.5",
|
|
@@ -113,30 +116,24 @@
|
|
|
113
116
|
"eslint-plugin-vue": "^10.9.1",
|
|
114
117
|
"globals": "^17.6.0",
|
|
115
118
|
"happy-dom": "^20.9.0",
|
|
116
|
-
"improved-yarn-audit": "^3.0.4",
|
|
117
119
|
"js-beautify": "^1.15.4",
|
|
118
120
|
"patch-package": "^8.0.1",
|
|
119
121
|
"prettier": "^3.8.3",
|
|
120
122
|
"prettier-plugin-solidity": "^2.3.1",
|
|
121
|
-
"prettier-plugin-svelte": "^
|
|
123
|
+
"prettier-plugin-svelte": "^4.0.1",
|
|
122
124
|
"svelte-eslint-parser": "^1.6.1",
|
|
123
125
|
"ts-node": "^10.9.2",
|
|
124
126
|
"typescript": "^5.9.3",
|
|
125
|
-
"typescript-eslint": "^8.59.
|
|
126
|
-
"vite": "^8.0.
|
|
127
|
+
"typescript-eslint": "^8.59.4",
|
|
128
|
+
"vite": "^8.0.14",
|
|
127
129
|
"vite-plugin-solid": "^2.11.12",
|
|
128
|
-
"vitest": "^4.1.
|
|
130
|
+
"vitest": "^4.1.7",
|
|
129
131
|
"vue-eslint-parser": "^10.4.0"
|
|
130
132
|
},
|
|
131
133
|
"overrides": {
|
|
132
|
-
"
|
|
134
|
+
"tmp": "^0.2.6"
|
|
133
135
|
},
|
|
134
136
|
"resolutions": {
|
|
135
|
-
|
|
136
|
-
},
|
|
137
|
-
"pnpm": {
|
|
138
|
-
"overrides": {
|
|
139
|
-
"devalue": "^5.8.1"
|
|
140
|
-
}
|
|
137
|
+
"tmp": "^0.2.6"
|
|
141
138
|
}
|
|
142
139
|
}
|