@analogjs/astro-angular 0.2.0-beta.12 → 0.2.0-beta.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 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -21,7 +21,7 @@ This command:
21
21
 
22
22
  - Installs the `@analogjs/astro-angular` package.
23
23
  - Adds the `@analogjs/astro-angular` integration to the `astro.config.mjs` file.
24
- - Installs the necessary dependencies to render Angular components on the server and client, and common Angular dependencies, such as `@angular/common` and `@angular/forms`.
24
+ - Installs the necessary dependencies to render Angular components on the server and client, and common Angular dependencies, such as `@angular/common`.
25
25
 
26
26
  ### Setting up the TypeScript config
27
27
 
@@ -113,8 +113,6 @@ export default defineConfig({
113
113
  integrations: [
114
114
  angular({
115
115
  vite: {
116
- tsconfig: 'path/to/tsconfig.app.json',
117
- workspaceRoot: 'rootDir',
118
116
  inlineStylesExtension: 'scss|sass|less',
119
117
  },
120
118
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@analogjs/astro-angular",
3
- "version": "0.2.0-beta.12",
3
+ "version": "0.2.0-beta.14",
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.12"
30
+ "@analogjs/vite-plugin-angular": "^0.2.0-beta.14"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "@angular-devkit/build-angular": "^16.0.0",