create-outsystems-astro 0.9.0 → 0.10.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.
Files changed (52) hide show
  1. package/bin/cli.js +37 -1
  2. package/integrations/.prettierignore +15 -0
  3. package/integrations/.yarn/releases/yarn-4.15.0.cjs +940 -0
  4. package/integrations/.yarnrc.yml +6 -0
  5. package/integrations/bun.lock +1225 -0
  6. package/integrations/bunfig.toml +3 -0
  7. package/integrations/deno.json +4 -0
  8. package/integrations/deno.lock +3896 -0
  9. package/integrations/eslint.config.mjs +61 -0
  10. package/integrations/html/client.ts +30 -0
  11. package/integrations/html/index.ts +57 -0
  12. package/integrations/html/server.ts +54 -0
  13. package/integrations/package-lock.json +8898 -0
  14. package/integrations/package.json +39 -0
  15. package/integrations/pnpm-lock.yaml +5499 -0
  16. package/integrations/pnpm-workspace.yaml +4 -0
  17. package/integrations/tsconfig.json +15 -0
  18. package/integrations/yarn.lock +6305 -0
  19. package/package.json +3 -1
  20. package/template/.github/workflows/deno-test.yml +1 -1
  21. package/template/.github/workflows/npm-test.yml +1 -1
  22. package/template/.github/workflows/pnpm-test.yml +2 -2
  23. package/template/.github/workflows/yarn-test.yml +26 -13
  24. package/template/.gitignore +4 -0
  25. package/template/.prettierignore +1 -0
  26. package/template/.yarn/releases/yarn-4.15.0.cjs +940 -0
  27. package/template/.yarnrc.yml +8 -0
  28. package/template/AGENTS.md +46 -1
  29. package/template/README.md +15 -0
  30. package/template/astro.config.mjs +4 -0
  31. package/template/bun.lock +322 -360
  32. package/template/bunfig.toml +3 -0
  33. package/template/deno.json +3 -11
  34. package/template/deno.lock +700 -679
  35. package/template/eslint.config.mjs +1 -0
  36. package/template/package-lock.json +610 -589
  37. package/template/package.json +36 -41
  38. package/template/pnpm-lock.yaml +1084 -1114
  39. package/template/pnpm-workspace.yaml +5 -0
  40. package/template/src/framework/html/Demo.ts +105 -0
  41. package/template/src/framework/html/Store.ts +47 -0
  42. package/template/src/images/html.png +0 -0
  43. package/template/src/pages/html/html-demo.astro +61 -0
  44. package/template/src/pages/multi/store.astro +3 -1
  45. package/template/src/stores/framework.ts +1 -0
  46. package/template/test/e2e/html/html-demo.spec.ts +36 -0
  47. package/template/test/integration/html/Demo.test.ts +83 -0
  48. package/template/tsconfig.json +1 -1
  49. package/template/vitest.config.ts +9 -0
  50. package/template/yarn.lock +14730 -10350
  51. /package/template/patches/{@analogjs+astro-angular+2.5.1.patch → @analogjs+astro-angular+2.5.2.patch} +0 -0
  52. /package/template/patches/{@angular+build+21.2.11.patch → @angular+build+21.2.12.patch} +0 -0
@@ -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 run improved-yarn-audit",
10
+ "audit:yarn": "yarn npm audit",
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.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",
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,39 @@
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.3",
50
+ "astro": "^6.3.7",
51
+ "islands-integrations": "file:./.integrations",
51
52
  "nanostores": "^1.3.0",
52
- "preact": "^10.29.1",
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.12",
57
- "svelte": "^5.55.7",
57
+ "solid-js": "^1.9.13",
58
+ "svelte": "^5.55.9",
58
59
  "tslib": "^2.8.1",
59
60
  "vue": "^3.5.34"
60
61
  },
61
62
  "devDependencies": {
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",
63
+ "@analogjs/vite-plugin-angular": "^2.5.2",
64
+ "@analogjs/vitest-angular": "^2.5.2",
65
+ "@angular-devkit/architect": "^0.2102.12",
66
+ "@angular-devkit/schematics": "^21.2.12",
67
+ "@angular/build": "^21.2.12",
68
+ "@angular/cli": "^21.2.12",
69
+ "@angular/compiler": "^21.2.14",
70
+ "@angular/compiler-cli": "^21.2.14",
71
+ "@angular/language-service": "^21.2.14",
71
72
  "@babel/core": "^7.29.0",
72
73
  "@eslint/compat": "^2.1.0",
73
74
  "@eslint/eslintrc": "^3.3.5",
74
75
  "@eslint/js": "^9.39.4",
75
- "@eslint/markdown": "^8.0.1",
76
- "@oxc-project/runtime": "^0.130.0",
76
+ "@eslint/markdown": "^8.0.2",
77
+ "@oxc-project/runtime": "^0.132.0",
77
78
  "@playwright/test": "1.60.0",
78
79
  "@preact/preset-vite": "^2.10.5",
79
80
  "@solidjs/testing-library": "^0.8.10",
80
81
  "@sveltejs/vite-plugin-svelte": "^7.1.2",
81
- "@testing-library/angular": "^19.1.10",
82
+ "@testing-library/angular": "^19.3.0",
82
83
  "@testing-library/dom": "^10.4.1",
83
84
  "@testing-library/jest-dom": "^6.9.1",
84
85
  "@testing-library/preact": "^3.2.4",
@@ -87,8 +88,8 @@
87
88
  "@testing-library/user-event": "^14.6.1",
88
89
  "@testing-library/vue": "^8.1.0",
89
90
  "@types/js-beautify": "^1.14.3",
90
- "@types/node": "^25.8.0",
91
- "@types/react": "^19.2.14",
91
+ "@types/node": "^25.9.1",
92
+ "@types/react": "^19.2.15",
92
93
  "@types/react-dom": "^19.2.3",
93
94
  "@vitejs/plugin-react": "^6.0.2",
94
95
  "@vitejs/plugin-vue": "^6.0.7",
@@ -104,7 +105,7 @@
104
105
  "eslint-plugin-jest": "^29.15.2",
105
106
  "eslint-plugin-jest-dom": "^5.5.0",
106
107
  "eslint-plugin-perfectionist": "^5.9.0",
107
- "eslint-plugin-playwright": "^2.10.2",
108
+ "eslint-plugin-playwright": "^2.10.4",
108
109
  "eslint-plugin-react": "^7.37.5",
109
110
  "eslint-plugin-react-hooks": "^7.1.1",
110
111
  "eslint-plugin-solid": "^0.14.5",
@@ -113,30 +114,24 @@
113
114
  "eslint-plugin-vue": "^10.9.1",
114
115
  "globals": "^17.6.0",
115
116
  "happy-dom": "^20.9.0",
116
- "improved-yarn-audit": "^3.0.4",
117
117
  "js-beautify": "^1.15.4",
118
118
  "patch-package": "^8.0.1",
119
119
  "prettier": "^3.8.3",
120
120
  "prettier-plugin-solidity": "^2.3.1",
121
- "prettier-plugin-svelte": "^3.5.2",
121
+ "prettier-plugin-svelte": "^4.0.1",
122
122
  "svelte-eslint-parser": "^1.6.1",
123
123
  "ts-node": "^10.9.2",
124
124
  "typescript": "^5.9.3",
125
- "typescript-eslint": "^8.59.3",
126
- "vite": "^8.0.13",
125
+ "typescript-eslint": "^8.59.4",
126
+ "vite": "^8.0.14",
127
127
  "vite-plugin-solid": "^2.11.12",
128
- "vitest": "^4.1.6",
128
+ "vitest": "^4.1.7",
129
129
  "vue-eslint-parser": "^10.4.0"
130
130
  },
131
131
  "overrides": {
132
- "devalue": "^5.8.1"
132
+ "tmp": "^0.2.6"
133
133
  },
134
134
  "resolutions": {
135
- "devalue": "^5.8.1"
136
- },
137
- "pnpm": {
138
- "overrides": {
139
- "devalue": "^5.8.1"
140
- }
135
+ "tmp": "^0.2.6"
141
136
  }
142
137
  }