* docs(core): update contributing.md guide on local publishing
* docs(misc): add note about disabling local registry
Co-authored-by: Miroslav Jonaš <meeroslav@users.noreply.github.com>
* docs(core): describe every properties available in schema.json
The current Generator documentation is not completed. Thus,
I managed to describe every undocumented part of generator currently.
This document is referenced from a lot of current `schema.json`
and code of it. Thanks a lot! :D
- Overview
- Description
- Examples
* docs(misc): add the instruction when out of memory
Added a new section: "When occurred `JavaScript heap out of memory`"
Also fixed some lint issues indicated by `markdownlint`.
* fix(misc): grammars
Co-authored-by: isaacplmann <isaacplmann@users.noreply.github.com>
* docs(core): more complete Generator
- correct grammars errors
- complete most the WIP part
- remove `items` since I didn't find any example of it
Co-authored-by: Isaac Mann <isaacplmann@users.noreply.github.com>
Co-Authored-By: Jonathan Cammisuli <Cammisuli@users.noreply.github.com>
* docs(core): correct the format
Co-authored-by: isaacplmann <isaacplmann@users.noreply.github.com>
Co-authored-by: Jonathan Cammisuli <Cammisuli@users.noreply.github.com>
- Single char alternation (e.g. a|b|c|d) in a RegExp can be simplified to use a character class ([abcd]) instead.
This usually also provides slightly better matching performance.
- Character escapes that are replaceable with the unescaped character without a change in meaning. Inside the square brackets of a character class, many escapes are unnecessary that would be necessary outside of a character class. For example the regex [\.] is identical to [.]
- If several qualified expressions occur after the qualifier having been checked for nullable, they can be replaced with optional chaining
The command `yarn test angular/src/utils/ast-utils` is running all unit tests / not working anymore.
I have added some commands that are woring for me. Please verify.
* feat(testing): update to jest-preset-angular v8.0.0 part 1
Updates to jest-preset-angular to v8.0.0, includes migrations to fix any existing projects affected
by the jest-preset-angular update.
closes#1979
* feat(testing): update jest-preset-angular to v8.0.0 part 2
Closed issues: #1979, #2165
Co-authored-by: Joshua D. Mentzer <mentzerj@trinity-health.org>
* feat(testing): update jest-preset-angular to v8.0.0 part 3
Co-authored-by: mentzerj <mentzerj@trinity-health.org>
Co-authored-by: Mehrad Rafigh <4339673+mehrad-rafigh@users.noreply.github.com>