Skip to content

Commit 17e361d

Browse files
committed
build(deps): updated deps
1 parent 59cf08e commit 17e361d

File tree

4 files changed

+1073
-1009
lines changed

4 files changed

+1073
-1009
lines changed

libs/ddd/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@ ng update --all --allow-dirty --force
3434
# add nx plugins (schematics)
3535
ng add @nrwl/angular --defaults
3636
ng add @xmlking/nxp-ddd
37-
# (or) for local plugin development
37+
38+
# (Optional) In development, here is what I do to use without publishing to NPM:
3839
yarn build:ddd # in nxp project
39-
ng add ~/Developer/Work/SPA/nxp/dist/libs/ddd
40+
ng add ~/Developer/Work/SPA/nxp/dist/libs/ddd # in target project
4041

4142
# add web-app. optional flags: --platform <web/mobile/desktop/node>
4243
ng g @xmlking/nxp-ddd:app yeti
@@ -59,7 +60,7 @@ nx g @xmlking/nxp-ddd:entity user --domain booking
5960
nx g @xmlking/nxp-ddd:entity seat --domain boarding
6061
```
6162

62-
### Post action
63+
### Post-Setup Actions
6364

6465
After generation all modules, you might have to remove `pathMatch: 'full'` and adjust your routes in some module's Router config .<br/>
6566
Optionally add `<router-outlet></router-outlet>` in shell component's HTML

libs/ddd/src/schematics/application/schema.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export interface ApplicationOptions {
1313
/**
1414
* runtime platform
1515
*/
16-
platform?: 'web' | 'mobile' | 'desktop' | 'node' | 'universal';
16+
platform?: "web" | "mobile" | "desktop" | "node" | "universal";
1717
/**
1818
* Backend project that provides data to this application. This sets up proxy.config.json.
1919
*/

package.json

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -39,31 +39,28 @@
3939
},
4040
"private": true,
4141
"dependencies": {
42-
"@nrwl/angular": "^9.2.2",
43-
"@schematics/angular": "9.1.1",
44-
"json-schema-to-typescript": "^8.2.0"
42+
"@nrwl/angular": "^9.2.4",
43+
"@schematics/angular": "9.1.5",
44+
"json-schema-to-typescript": "^9.1.0"
4545
},
4646
"devDependencies": {
47-
"@nrwl/eslint-plugin-nx": "9.2.2",
48-
"@nrwl/jest": "9.2.2",
49-
"@nrwl/nx-plugin": "9.2.2",
50-
"@nrwl/workspace": "9.2.2",
47+
"@nrwl/eslint-plugin-nx": "9.2.4",
48+
"@nrwl/jest": "9.2.4",
49+
"@nrwl/nx-plugin": "9.2.4",
50+
"@nrwl/workspace": "9.2.4",
5151
"@types/jest": "25.2.1",
52-
"@types/node": "13.13.0",
53-
"@typescript-eslint/eslint-plugin": "2.28.0",
54-
"@typescript-eslint/parser": "2.28.0",
52+
"@types/node": "13.13.5",
53+
"@typescript-eslint/eslint-plugin": "2.31.0",
54+
"@typescript-eslint/parser": "2.31.0",
5555
"dotenv": "8.2.0",
5656
"eslint": "6.8.0",
57-
"eslint-config-prettier": "6.10.1",
57+
"eslint-config-prettier": "6.11.0",
5858
"jest": "25.3.0",
5959
"lerna": "3.20.2",
60-
"prettier": "2.0.4",
61-
"ts-jest": "25.4.0",
62-
"ts-node": "8.8.2",
63-
"tslint": "6.1.1",
60+
"prettier": "2.0.5",
61+
"ts-jest": "25.5.1",
62+
"ts-node": "8.10.1",
63+
"tslint": "6.1.2",
6464
"typescript": "3.8.3"
65-
},
66-
"resolutions": {
67-
"minimist": ">=1.2.5"
6865
}
6966
}

0 commit comments

Comments
 (0)