Fix: Rebase

Chore: Updated dependencies
Chore: Python 3.10
Chore: Node 18
Chore: Ansible to support new layouts
This commit is contained in:
2022-05-09 23:56:51 +05:30
parent 13df9614bb
commit 763af272d1
18 changed files with 116 additions and 90 deletions

1
overlord/.gitignore vendored
View File

@ -31,6 +31,7 @@ chrome-profiler-events*.json
.history/*
# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage

View File

@ -14,46 +14,46 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^12.2.13",
"@angular/cdk": "^12.2.12",
"@angular/common": "^12.2.13",
"@angular/compiler": "^12.2.13",
"@angular/core": "^12.2.13",
"@angular/flex-layout": "^12.0.0-beta.35",
"@angular/forms": "^12.2.13",
"@angular/material": "^12.2.12",
"@angular/material-moment-adapter": "^12.2.12",
"@angular/platform-browser": "^12.2.13",
"@angular/platform-browser-dynamic": "^12.2.13",
"@angular/router": "^12.2.13",
"@ngx-loading-bar/core": "^5.1.2",
"@ngx-loading-bar/http-client": "^5.1.2",
"@ngx-loading-bar/router": "^5.1.2",
"@types/mousetrap": "1.6.8",
"angular2-hotkeys": "^2.4.0",
"mathjs": "^10.0.0",
"moment": "^2.29.1",
"@angular/animations": "^13.3.6",
"@angular/cdk": "^13.3.6",
"@angular/common": "^13.3.6",
"@angular/compiler": "^13.3.6",
"@angular/core": "^13.3.6",
"@angular/flex-layout": "^13.0.0-beta.38",
"@angular/forms": "^13.3.6",
"@angular/material": "^13.3.6",
"@angular/material-moment-adapter": "^13.3.6",
"@angular/platform-browser": "^13.3.6",
"@angular/platform-browser-dynamic": "^13.3.6",
"@angular/router": "^13.3.6",
"@ngx-loading-bar/core": "^6.0.2",
"@ngx-loading-bar/http-client": "^6.0.2",
"@ngx-loading-bar/router": "^6.0.2",
"@types/mousetrap": "1.6.9",
"angular2-hotkeys": "^13.1.0",
"mathjs": "^10.5.2",
"moment": "^2.29.3",
"rxjs": "^6.6.7",
"tslib": "^2.1.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.2.13",
"@angular-eslint/builder": "^12.6.1",
"@angular-eslint/eslint-plugin": "^12.6.1",
"@angular-eslint/eslint-plugin-template": "^12.6.1",
"@angular-eslint/schematics": "^12.6.1",
"@angular-eslint/template-parser": "^12.6.1",
"@angular/cli": "^12.2.13",
"@angular/compiler-cli": "^12.2.13",
"@angular/language-service": "^12.2.13",
"@angular-devkit/build-angular": "^13.3.5",
"@angular-eslint/builder": "^13.2.1",
"@angular-eslint/eslint-plugin": "^13.2.1",
"@angular-eslint/eslint-plugin-template": "^13.2.1",
"@angular-eslint/schematics": "^13.2.1",
"@angular-eslint/template-parser": "^13.2.1",
"@angular/cli": "^13.3.5",
"@angular/compiler-cli": "^13.3.6",
"@angular/language-service": "^13.3.6",
"@types/jasmine": "~3.7.4",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"eslint": "^7.26.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^7.0.4",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"eslint": "^8.2.0",
"eslint-plugin-import": "2.26.0",
"husky": "^8.0.1",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "^6.3.2",
@ -61,11 +61,11 @@
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.6.0",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"standard-version": "^9.3.2",
"ts-node": "^9.1.1",
"typescript": "~4.2.4"
"typescript": "~4.6.4"
},
"husky": {
"hooks": {

View File

@ -18,18 +18,6 @@
* BROWSER POLYFILLS
*/
/**
* IE11 requires the following for NgClass support on SVG elements
*/
// import 'classlist.js'; // Run `npm install --save classlist.js`.
/**
* Web Animations `@angular/platform-browser/animations`
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
* Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
*/
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
/**
* By default, zone.js will patch all possible macroTask and DomEvents
* user can disable parts of macroTask/DomEvents patch by setting following flags

View File

@ -19,7 +19,9 @@ declare const require: {
};
// First, initialize the Angular testing environment.
getTestBed().initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDynamicTesting());
getTestBed().initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDynamicTesting(), {
teardown: { destroyAfterEach: false }
});
// Then we find all the tests.
const context = require.context('./', true, /\.spec\.ts$/);
// And load the modules.