piral-ng 0.15.8 → 0.15.9-beta.5384
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/README.md +29 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -722,6 +722,35 @@ import 'core-js/proposals/reflect-metadata';
|
|
|
722
722
|
import '@angular/compiler';
|
|
723
723
|
```
|
|
724
724
|
|
|
725
|
+
### Angular 14
|
|
726
|
+
|
|
727
|
+
In general, Angular 14 seems to work and is **supported**.
|
|
728
|
+
|
|
729
|
+
The basic dependencies look as follows:
|
|
730
|
+
|
|
731
|
+
```json
|
|
732
|
+
{
|
|
733
|
+
"@angular/common": "^14",
|
|
734
|
+
"@angular/compiler": "^14",
|
|
735
|
+
"@angular/core": "^14",
|
|
736
|
+
"@angular/router": "^14",
|
|
737
|
+
"@angular/platform-browser": "^14",
|
|
738
|
+
"@angular/platform-browser-dynamic": "^14",
|
|
739
|
+
"core-js": "^3.19.0",
|
|
740
|
+
"rxjs": "~7.4",
|
|
741
|
+
"zone.js": "~0.11"
|
|
742
|
+
}
|
|
743
|
+
```
|
|
744
|
+
|
|
745
|
+
Besides the usual imports the explicit import of the `@angular/compiler` package may be necessary.
|
|
746
|
+
|
|
747
|
+
So include in your app shell as preamble:
|
|
748
|
+
|
|
749
|
+
```js
|
|
750
|
+
import 'core-js/proposals/reflect-metadata';
|
|
751
|
+
import '@angular/compiler';
|
|
752
|
+
```
|
|
753
|
+
|
|
725
754
|
## License
|
|
726
755
|
|
|
727
756
|
Piral is released using the MIT license. For more information see the [license file](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "piral-ng",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.9-beta.5384",
|
|
4
4
|
"description": "Plugin for integrating Angular components in Piral.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"piral",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"@angular/platform-browser-dynamic": "^14.0.0",
|
|
82
82
|
"@angular/router": "^14.0.0",
|
|
83
83
|
"ng-packagr": "^14.0.0",
|
|
84
|
-
"piral-core": "
|
|
84
|
+
"piral-core": "0.15.9-beta.5384",
|
|
85
85
|
"rxjs": "^7.3.0"
|
|
86
86
|
},
|
|
87
87
|
"peerDependencies": {
|
|
@@ -92,5 +92,5 @@
|
|
|
92
92
|
"@angular/router": "^2.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0",
|
|
93
93
|
"rxjs": "^5.0.0 || ^6.0.0 || ^7.0.0"
|
|
94
94
|
},
|
|
95
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "e1fc7342dedc2c0b0f099823e15d9e5ac4c641d5"
|
|
96
96
|
}
|