@analogjs/astro-angular 1.7.0-beta.7 → 1.7.0-beta.9

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 +13 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -10,15 +10,24 @@ This package allows rendering [Angular](https://angular.dev) components as islan
10
10
 
11
11
  Use the `astro add` command to install the integration
12
12
 
13
+ Using npm:
14
+
13
15
  ```sh
14
- # Using NPM
15
16
  npx astro add @analogjs/astro-angular
16
- # Using Yarn
17
- yarn astro add @analogjs/astro-angular
18
- # Using PNPM
17
+ ```
18
+
19
+ Using pnpm:
20
+
21
+ ```sh
19
22
  pnpm astro add @analogjs/astro-angular
20
23
  ```
21
24
 
25
+ Using yarn:
26
+
27
+ ```sh
28
+ yarn astro add @analogjs/astro-angular
29
+ ```
30
+
22
31
  This command:
23
32
 
24
33
  - Installs the `@analogjs/astro-angular` package.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@analogjs/astro-angular",
3
- "version": "1.7.0-beta.7",
3
+ "version": "1.7.0-beta.9",
4
4
  "description": "Use Angular components within Astro",
5
5
  "type": "module",
6
6
  "author": "Brandon Roberts <robertsbt@gmail.com>",
@@ -28,7 +28,7 @@
28
28
  "url": "https://github.com/analogjs/analog.git"
29
29
  },
30
30
  "dependencies": {
31
- "@analogjs/vite-plugin-angular": "^1.7.0-beta.7"
31
+ "@analogjs/vite-plugin-angular": "^1.7.0-beta.9"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "@angular-devkit/build-angular": ">=16.0.0",