create-analog 1.4.0 → 1.5.0-beta.2
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
CHANGED
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"test": "ng test"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@analogjs/content": "^1.
|
|
19
|
-
"@analogjs/router": "^1.
|
|
18
|
+
"@analogjs/content": "^1.5.0-beta.2",
|
|
19
|
+
"@analogjs/router": "^1.5.0-beta.2",
|
|
20
20
|
"@angular/animations": "^17.2.0",
|
|
21
21
|
"@angular/common": "^17.2.0",
|
|
22
22
|
"@angular/compiler": "^17.2.0",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"zone.js": "~0.14.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@analogjs/platform": "^1.
|
|
42
|
-
"@analogjs/vite-plugin-angular": "^1.
|
|
41
|
+
"@analogjs/platform": "^1.5.0-beta.2",
|
|
42
|
+
"@analogjs/vite-plugin-angular": "^1.5.0-beta.2",
|
|
43
43
|
"@angular/cli": "^17.2.0",
|
|
44
44
|
"@angular/compiler-cli": "^17.2.0",
|
|
45
45
|
"@nx/vite": "~18.0.0",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"test": "ng test"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@analogjs/content": "^1.
|
|
19
|
-
"@analogjs/router": "^1.
|
|
18
|
+
"@analogjs/content": "^1.5.0-beta.2",
|
|
19
|
+
"@analogjs/router": "^1.5.0-beta.2",
|
|
20
20
|
"@angular/animations": "^18.0.0",
|
|
21
21
|
"@angular/common": "^18.0.0",
|
|
22
22
|
"@angular/compiler": "^18.0.0",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"zone.js": "~0.14.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@analogjs/platform": "^1.
|
|
41
|
-
"@analogjs/vite-plugin-angular": "^1.
|
|
40
|
+
"@analogjs/platform": "^1.5.0-beta.2",
|
|
41
|
+
"@analogjs/vite-plugin-angular": "^1.5.0-beta.2",
|
|
42
42
|
"@angular-devkit/build-angular": "^18.0.0",
|
|
43
43
|
"@angular/cli": "^18.0.0",
|
|
44
44
|
"@angular/compiler-cli": "^18.0.0",
|
|
@@ -3,6 +3,7 @@ import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
|
|
|
3
3
|
import { provideClientHydration } from '@angular/platform-browser';
|
|
4
4
|
import { provideFileRouter } from '@analogjs/router';
|
|
5
5
|
import { provideContent, withMarkdownRenderer } from '@analogjs/content';
|
|
6
|
+
import { withPrismHighlighter } from '@analogjs/content/prism-highlighter';
|
|
6
7
|
|
|
7
8
|
export const appConfig: ApplicationConfig = {
|
|
8
9
|
providers: [
|
|
@@ -10,6 +11,6 @@ export const appConfig: ApplicationConfig = {
|
|
|
10
11
|
provideFileRouter(),
|
|
11
12
|
provideHttpClient(withFetch()),
|
|
12
13
|
provideClientHydration(),
|
|
13
|
-
provideContent(withMarkdownRenderer()),
|
|
14
|
+
provideContent(withMarkdownRenderer(), withPrismHighlighter()),
|
|
14
15
|
],
|
|
15
16
|
};
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"private": true,
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@analogjs/content": "^1.
|
|
19
|
-
"@analogjs/router": "^1.
|
|
18
|
+
"@analogjs/content": "^1.5.0-beta.2",
|
|
19
|
+
"@analogjs/router": "^1.5.0-beta.2",
|
|
20
20
|
"@angular/animations": "^18.0.0",
|
|
21
21
|
"@angular/common": "^18.0.0",
|
|
22
22
|
"@angular/compiler": "^18.0.0",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"zone.js": "~0.14.3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@analogjs/platform": "^1.
|
|
41
|
-
"@analogjs/vite-plugin-angular": "^1.
|
|
40
|
+
"@analogjs/platform": "^1.5.0-beta.2",
|
|
41
|
+
"@analogjs/vite-plugin-angular": "^1.5.0-beta.2",
|
|
42
42
|
"@angular-devkit/build-angular": "^18.0.0",
|
|
43
43
|
"@angular/cli": "^18.0.0",
|
|
44
44
|
"@angular/compiler-cli": "^18.0.0",
|