@analogjs/astro-angular 2.0.0-alpha.13 → 2.0.0-alpha.14

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -294,7 +294,7 @@ interface Todo {
294
294
  })
295
295
  export class TodosComponent implements OnInit {
296
296
  static clientProviders = [provideHttpClient()];
297
- static renderProviders = [];
297
+ static renderProviders = [TodosComponent.clientProviders];
298
298
 
299
299
  http = inject(HttpClient);
300
300
  todos: Todo[] = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@analogjs/astro-angular",
3
- "version": "2.0.0-alpha.13",
3
+ "version": "2.0.0-alpha.14",
4
4
  "description": "Use Angular components within Astro",
5
5
  "type": "module",
6
6
  "author": "Brandon Roberts <robertsbt@gmail.com>",
@@ -32,7 +32,7 @@
32
32
  "url": "https://github.com/sponsors/brandonroberts"
33
33
  },
34
34
  "dependencies": {
35
- "@analogjs/vite-plugin-angular": "^2.0.0-alpha.13"
35
+ "@analogjs/vite-plugin-angular": "^2.0.0-alpha.14"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "@angular-devkit/build-angular": ">=16.0.0",