-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: upgrade to angular v13 * fix: update jest config * fix: add --legacy-peer-deps
- Loading branch information
1 parent
dbedf48
commit 5eb3dbd
Showing
18 changed files
with
18,589 additions
and
18,627 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ | |
!.vscode/extensions.json | ||
|
||
# misc | ||
/.angular/cache | ||
/.sass-cache | ||
/connect.lock | ||
/coverage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
module.exports = { | ||
displayName: 'angular-web-bluetooth-starter', | ||
preset: 'jest-preset-angular', | ||
setupFilesAfterEnv: ['<rootDir>/test-setup.ts'], | ||
testPathIgnorePatterns: ['<rootDir>/projects/'], | ||
modulePathIgnorePatterns: [ | ||
"dist/*" | ||
], | ||
displayName: "angular-web-bluetooth-starter", | ||
setupFilesAfterEnv: ["<rootDir>/test-setup.ts"], | ||
modulePathIgnorePatterns: ["dist/*"], | ||
globalSetup: 'jest-preset-angular/global-setup', | ||
moduleNameMapper: { | ||
"@manekinekko/(.+)": '<rootDir>/projects/manekinekko/$1/src/public_api.ts' | ||
} | ||
} | ||
"@manekinekko/(.+)": "<rootDir>/projects/manekinekko/$1/src/public_api.ts", | ||
}, | ||
}; |
Oops, something went wrong.