@analogjs/astro-angular 0.2.0-beta.6 → 0.2.0-beta.7

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 +6 -1
  2. package/package.json +14 -2
package/README.md CHANGED
@@ -9,7 +9,12 @@ An [Angular](https://angular.io) integration for rendering components in [Astro]
9
9
  Use the `astro add` command to install the integration
10
10
 
11
11
  ```sh
12
- astro add @analogjs/astro-angular
12
+ # Using NPM
13
+ npx astro add @analogjs/astro-angular
14
+ # Using Yarn
15
+ yarn astro add @analogjs/astro-angular
16
+ # Using PNPM
17
+ pnpm astro add @analogjs/astro-angular
13
18
  ```
14
19
 
15
20
  This command:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@analogjs/astro-angular",
3
- "version": "0.2.0-beta.6",
3
+ "version": "0.2.0-beta.7",
4
4
  "description": "Use Angular components within Astro",
5
5
  "type": "module",
6
6
  "author": "Brandon Roberts <robertsbt@gmail.com>",
@@ -27,7 +27,7 @@
27
27
  "url": "https://github.com/analogjs/analog.git"
28
28
  },
29
29
  "dependencies": {
30
- "@analogjs/vite-plugin-angular": "^0.2.0-beta.6"
30
+ "@analogjs/vite-plugin-angular": "^0.2.0-beta.7"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "@angular-devkit/build-angular": "^16.0.0",
@@ -44,6 +44,18 @@
44
44
  "zone.js": "^0.13.0",
45
45
  "tslib": "^2.4.0"
46
46
  },
47
+ "ng-update": {
48
+ "packageGroup": [
49
+ "@analogjs/astro-angular",
50
+ "@analogjs/platform",
51
+ "@analogjs/content",
52
+ "@analogjs/router",
53
+ "@analogjs/trpc",
54
+ "@analogjs/vite-plugin-angular",
55
+ "@analogjs/vite-plugin-nitro"
56
+ ],
57
+ "migrations": "./migrations/migration.json"
58
+ },
47
59
  "main": "./src/index.js",
48
60
  "types": "./src/index.d.ts"
49
61
  }