@analogjs/platform 1.3.0 → 1.3.1-beta.1
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.
- package/package.json +3 -3
- package/src/lib/nx-plugin/src/generators/app/compat.d.ts +1 -1
- package/src/lib/nx-plugin/src/generators/init/compat.d.ts +1 -1
- package/src/lib/nx-plugin/src/generators/setup-vitest/compat.d.ts +1 -1
- package/src/lib/options.d.ts +1 -1
- package/src/lib/nx-plugin/src/generators/app/versions/README.md +0 -31
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@analogjs/platform",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1-beta.1",
|
|
4
4
|
"description": "The fullstack meta-framework for Angular",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Brandon Roberts <robertsbt@gmail.com>",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"nitropack": "^2.6.0",
|
|
28
|
-
"@analogjs/vite-plugin-angular": "^1.3.
|
|
29
|
-
"@analogjs/vite-plugin-nitro": "^1.3.
|
|
28
|
+
"@analogjs/vite-plugin-angular": "^1.3.1-beta.1",
|
|
29
|
+
"@analogjs/vite-plugin-nitro": "^1.3.1-beta.1"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"@nx/devkit": "^16.0.0 || ^17.0.0 || ^18.0.0",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: (generatorOptions: import("
|
|
1
|
+
declare const _default: (generatorOptions: import("./schema").AnalogNxApplicationGeneratorOptions) => (tree: any, context: any) => Promise<any>;
|
|
2
2
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: (generatorOptions: import("
|
|
1
|
+
declare const _default: (generatorOptions: import("./schema").SetupAnalogGeneratorSchema) => (tree: any, context: any) => Promise<any>;
|
|
2
2
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: (generatorOptions: import("
|
|
1
|
+
declare const _default: (generatorOptions: import("./schema").SetupVitestGeneratorSchema) => (tree: any, context: any) => Promise<any>;
|
|
2
2
|
export default _default;
|
package/src/lib/options.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ export interface Options {
|
|
|
32
32
|
}
|
|
33
33
|
export interface PrerenderContentDir {
|
|
34
34
|
/**
|
|
35
|
-
* The directory where files should be grabbed from.
|
|
35
|
+
* The directory or glob pattern where the files should be grabbed from.
|
|
36
36
|
* @example `/src/contents/blog`
|
|
37
37
|
*/
|
|
38
38
|
contentDir: string;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# Nx, Angular, and Analog Versions
|
|
2
|
-
|
|
3
|
-
Since we rely on Nx as a way to keep our repository up to date,
|
|
4
|
-
Analog also follows Nx migrations when it comes to staying in sync with the latest Angular version.
|
|
5
|
-
|
|
6
|
-
This means that as Nx releases support for the next Angular version, Analog will adopt it and release support for it.
|
|
7
|
-
|
|
8
|
-
In addition to the latest version of Angular (16.x) we support the latest
|
|
9
|
-
Angular 15.x version for backwards compatibility.
|
|
10
|
-
|
|
11
|
-
## Nx, Angular, and Analog Version Compatibility Matrix
|
|
12
|
-
|
|
13
|
-
Below is a reference table that matches versions of Nx and Angular with the Analog version that is compatible with it.
|
|
14
|
-
The table shows the minimum version of Nx, the supported Angular version, and the minimum supported version of Analog.
|
|
15
|
-
|
|
16
|
-
Currently the newest minor versions of Angular 15 and Angular 16 are supported.
|
|
17
|
-
It is not planned to support all minor versions within a major Angular version.
|
|
18
|
-
|
|
19
|
-
As Analog becomes stable we will provide a recommended version. It will usually be the latest minor version of Analog
|
|
20
|
-
in the range provided because there will have been bug fixes added since the first release in the range.
|
|
21
|
-
|
|
22
|
-
| Nx Version _(min)_ | Angular Version | Analog Version |
|
|
23
|
-
| ------------------ | --------------- | ----------------- |
|
|
24
|
-
| 17.0.0 | ^16.2.0 | **latest** |
|
|
25
|
-
| 16.1.0 | ^16.1.0 | **latest** |
|
|
26
|
-
| 16.0.0 | ~15.2.X | **0.1.0-beta.22** |
|
|
27
|
-
| 15.2.0 | ~15.2.X | **0.1.0-beta.22** |
|
|
28
|
-
| < 15.2.0 | ~14.0.0 | **not supported** |
|
|
29
|
-
|
|
30
|
-
Additionally, you can check this [guide from Nx](https://nx.dev/packages/angular/documents/angular-nx-version-matrix)
|
|
31
|
-
to learn more about Nx and Angular compatibility.
|