Skip to content

Commit 5103493

Browse files
authored
chore(deps): update nrwl and angular (#30)
* update nrwl * update angular * use yarn * Update react-ng-wrapper.tsx
1 parent d45d092 commit 5103493

File tree

4 files changed

+1252
-271
lines changed

4 files changed

+1252
-271
lines changed

angular.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,8 @@
295295
"typescriptMismatch": false,
296296
"versionMismatch": false
297297
},
298-
"defaultCollection": "@nrwl/angular"
298+
"defaultCollection": "@nrwl/angular",
299+
"packageManager": "yarn"
299300
},
300301
"schematics": {
301302
"@nrwl/schematics:application": {

libs/react-ng-wrapper/src/lib/react-ng-wrapper.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class ReactNgWrapper<T, U = any> extends React.Component<U, { selector: s
3232
this._componentDef = componentFactory[NG_COMPONENT_DEF] || null;
3333

3434
if (!this._componentDef) {
35-
throw new Error('A component with a ngComponentDef is required');
35+
throw new Error(`A component with a ${NG_COMPONENT_DEF} is required`);
3636
}
3737

3838
this.state = {

package.json

+20-20
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@
3434
},
3535
"private": true,
3636
"dependencies": {
37-
"@angular/animations": "8.2.6",
38-
"@angular/common": "8.2.6",
39-
"@angular/compiler": "8.2.6",
40-
"@angular/core": "8.2.6",
41-
"@angular/forms": "8.2.6",
42-
"@angular/platform-browser": "8.2.6",
43-
"@angular/platform-browser-dynamic": "8.2.6",
44-
"@angular/router": "8.2.6",
45-
"@nrwl/angular": "8.5.0",
37+
"@angular/animations": "8.2.11",
38+
"@angular/common": "8.2.11",
39+
"@angular/compiler": "8.2.11",
40+
"@angular/core": "8.2.11",
41+
"@angular/forms": "8.2.11",
42+
"@angular/platform-browser": "8.2.11",
43+
"@angular/platform-browser-dynamic": "8.2.11",
44+
"@angular/router": "8.2.11",
45+
"@nrwl/angular": "8.6.0",
4646
"core-js": "2.6.9",
4747
"document-register-element": "1.13.1",
4848
"react": "16.9.0",
@@ -51,19 +51,19 @@
5151
"zone.js": "0.9.1"
5252
},
5353
"devDependencies": {
54-
"@angular-devkit/build-angular": "0.803.4",
55-
"@angular-devkit/build-ng-packagr": "0.803.4",
54+
"@angular-devkit/build-angular": "0.803.12",
55+
"@angular-devkit/build-ng-packagr": "0.803.12",
5656
"@angular-devkit/core": "8.3.3",
57-
"@angular/cli": "8.3.4",
58-
"@angular/compiler-cli": "8.2.6",
59-
"@angular/language-service": "8.2.6",
57+
"@angular/cli": "8.3.12",
58+
"@angular/compiler-cli": "8.2.11",
59+
"@angular/language-service": "8.2.11",
6060
"@babel/preset-react": "7.0.0",
61-
"@nrwl/cypress": "8.5.0",
62-
"@nrwl/eslint-plugin-nx": "8.5.0",
63-
"@nrwl/jest": "8.5.0",
64-
"@nrwl/react": "8.5.0",
65-
"@nrwl/web": "8.5.0",
66-
"@nrwl/workspace": "8.5.0",
61+
"@nrwl/cypress": "8.6.0",
62+
"@nrwl/eslint-plugin-nx": "8.6.0",
63+
"@nrwl/jest": "8.6.0",
64+
"@nrwl/react": "8.6.0",
65+
"@nrwl/web": "8.6.0",
66+
"@nrwl/workspace": "8.6.0",
6767
"@testing-library/react": "8.0.5",
6868
"@types/jest": "24.0.9",
6969
"@types/jquery": "3.3.6",

0 commit comments

Comments
 (0)