piral-ng 1.0.0 → 1.0.1-beta.5640

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 +9 -0
  2. package/package.json +3 -11
package/README.md CHANGED
@@ -288,6 +288,15 @@ module.exports = (config) => {
288
288
 
289
289
  The provided library only brings API extensions for pilets to a Piral instance. The Piral instance still needs to be configured properly to support Angular 2+.
290
290
 
291
+ The following (Angular) packages should be installed:
292
+
293
+ - `@angular/common`
294
+ - `@angular/core`
295
+ - `@angular/platform-browser`
296
+ - `@angular/platform-browser-dynamic`
297
+ - `@angular/router`
298
+ - `rxjs`
299
+
291
300
  The following polyfills/vendor libs should be imported *before* any other package.
292
301
 
293
302
  ```ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-ng",
3
- "version": "1.0.0",
3
+ "version": "1.0.1-beta.5640",
4
4
  "description": "Plugin for integrating Angular components in Piral.",
5
5
  "keywords": [
6
6
  "piral",
@@ -81,16 +81,8 @@
81
81
  "@angular/platform-browser-dynamic": "^16.0.0",
82
82
  "@angular/router": "^16.0.0",
83
83
  "ng-packagr": "^16.0.0",
84
- "piral-core": "^1.0.0",
84
+ "piral-core": "1.0.1-beta.5640",
85
85
  "rxjs": "^7.3.0"
86
86
  },
87
- "peerDependencies": {
88
- "@angular/common": "^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 || ^15.0.0 || ^16.0.0",
89
- "@angular/core": "^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 || ^15.0.0 || ^16.0.0",
90
- "@angular/platform-browser": "^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 || ^15.0.0 || ^16.0.0",
91
- "@angular/platform-browser-dynamic": "^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 || ^15.0.0 || ^16.0.0",
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 || ^15.0.0 || ^16.0.0",
93
- "rxjs": "^5.0.0 || ^6.0.0 || ^7.0.0"
94
- },
95
- "gitHead": "67d9a2920bd5231baf10bc87ae8985666b18fa3a"
87
+ "gitHead": "fa0a72b28fd0a20afec7ef491ec19e93c090fc72"
96
88
  }