upgrade (angular 8): dependant package updates (ng-packger, codelyzer, tsickle)

This commit is contained in:
Shai Rose 2019-06-23 16:20:13 +03:00
Родитель b0adcdda46
Коммит 2341e2c85b
6 изменённых файлов: 21 добавлений и 42 удалений

Просмотреть файл

@ -243,25 +243,6 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Note: Usage of the fonts and icons referenced in Office UI Fabric is subject to the terms listed at https://aka.ms/fabric-assets-license
@uifabric/set-version
MIT
@uifabric/set-version
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Note: Usage of the fonts and icons referenced in Office UI Fabric is subject to the terms listed at http://aka.ms/fabric-assets-license
@uifabric/styling
@ -280,8 +261,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Note: Usage of the fonts and icons referenced in Office UI Fabric is subject to the terms listed at https://aka.ms/fabric-assets-license
Note: Usage of the fonts and icons referenced in Office UI Fabric is subject to the terms listed at http://aka.ms/fabric-assets-license
@uifabric/utilities
MIT
@ -299,8 +279,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Note: Usage of the fonts and icons referenced in Office UI Fabric is subject to the terms listed at https://aka.ms/fabric-assets-license
Note: Usage of the fonts and icons referenced in Office UI Fabric is subject to the terms listed at http://aka.ms/fabric-assets-license
angular-react
MIT
@ -353,7 +332,7 @@ SOFTWARE.
core-js
MIT
Copyright (c) 2014-2018 Denis Pushkarev
Copyright (c) 2014-2019 Denis Pushkarev
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

Просмотреть файл

@ -9,7 +9,7 @@
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link rel="stylesheet" href="styles.6978f55180eaea5211df.css"></head>
<link rel="stylesheet" href="styles.6d69625176213009fe6e.css"></head>
<body>
<!-- Github Pages hack to allow SPA refresh without receiving 404. -->
<script>
@ -28,5 +28,5 @@
<!-- /Github Pages hack. -->
<app-root class="mat-typography"></app-root>
<script src="runtime.741402d1d47331ce975c.js"></script><script src="polyfills-es5.713635137766a4d7e797.js" nomodule></script><script src="polyfills.3d92fe4c0db1afd34a2f.js"></script><script src="main.c51c2d93488a3be80702.js"></script></body>
<script src="runtime.741402d1d47331ce975c.js"></script><script src="polyfills-es5.713635137766a4d7e797.js" nomodule></script><script src="polyfills.f0298b90f4936f78a809.js"></script><script src="main.27d41c25450e53e7b24e.js"></script></body>
</html>

Просмотреть файл

@ -50,11 +50,11 @@
],
"private": false,
"peerDependencies": {
"@angular/compiler": "^7.0.3",
"@angular/core": "^7.0.3",
"@angular/platform-browser-dynamic": "^7.0.3",
"@angular/platform-browser": "^7.0.3",
"rxjs": "^6.2.0",
"@angular/compiler": "^8.0.2",
"@angular/core": "^8.0.2",
"@angular/platform-browser-dynamic": "^8.0.2",
"@angular/platform-browser": "^8.0.2",
"rxjs": "^6.5.2",
"react-dom": "^16.6.3",
"react": "^16.6.3"
},

Просмотреть файл

@ -53,7 +53,7 @@ export class Disguise extends React.PureComponent<DisguiseProps> {
if (React.Children.count(children) === 1) {
const [onlyChild] = React.Children.toArray(children);
if (typeof onlyChild === 'object' && (<ReactElement<any, any>>onlyChild).type === ReactContent) {
if (typeof onlyChild === 'object' && (<ReactElement<any>>onlyChild).type === ReactContent) {
return true;
}
}
@ -97,10 +97,10 @@ export class Disguise extends React.PureComponent<DisguiseProps> {
return child;
}
const ChildRoot = (<ReactElement<any, any>>child).type || disguiseChildrenAs;
const ChildRoot = (<ReactElement<any>>child).type || disguiseChildrenAs;
return React.createElement(
ChildRoot,
{ ...(<ReactElement<any, any>>child).props, key: (<ReactElement<any, any>>child).key },
{ ...(<ReactElement<any>>child).props, key: (<ReactElement<any>>child).key },
child
);
});

Просмотреть файл

@ -45,10 +45,10 @@
"private": false,
"peerDependencies": {
"@angular-react/core": "^0.6.2",
"@angular/common": "^7.0.3",
"@angular/core": "^7.0.3",
"@angular/platform-browser-dynamic": "^7.0.3",
"@angular/platform-browser": "^7.0.3",
"@angular/common": "^8.0.2",
"@angular/core": "^8.0.2",
"@angular/platform-browser-dynamic": "^8.0.2",
"@angular/platform-browser": "^8.0.2",
"office-ui-fabric-react": "6.151.0",
"react-dom": "^16.6.3",
"react": "^16.6.3"

Просмотреть файл

@ -35,10 +35,10 @@
"private": false,
"peerDependencies": {
"@angular-react/core": "^0.3.0-alpha1",
"@angular/common": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/platform-browser-dynamic": "^6.1.0",
"@angular/platform-browser": "^6.1.0",
"@angular/common": "^8.0.2",
"@angular/core": "^8.0.2",
"@angular/platform-browser-dynamic": "^8.0.2",
"@angular/platform-browser": "^8.0.2",
"semantic-ui-react": "^0.79.1",
"react-dom": "^16.4.1",
"react": "^16.4.1"