Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Frontend rewrite #131

Open
wants to merge 16 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Migrating to Angular 10
lieberlois committed Mar 18, 2023

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit aaecddeecfd59c61415aba9a97c68e93b212e8d4
3 changes: 1 addition & 2 deletions stack/application/frontend/angular.json
Original file line number Diff line number Diff line change
@@ -25,8 +25,7 @@
"styles": [
"src/styles.css"
],
"scripts": [],
"es5BrowserSupport": true
"scripts": []
},
"configurations": {
"production": {
31,070 changes: 23,888 additions & 7,182 deletions stack/application/frontend/package-lock.json

Large diffs are not rendered by default.

50 changes: 25 additions & 25 deletions stack/application/frontend/package.json
Original file line number Diff line number Diff line change
@@ -13,52 +13,52 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^9.0.3",
"@angular/common": "^9.0.3",
"@angular/compiler": "^9.0.3",
"@angular/core": "^9.0.3",
"@angular/forms": "^9.0.3",
"@angular/platform-browser": "^9.0.3",
"@angular/platform-browser-dynamic": "^9.0.3",
"@angular/platform-server": "^9.0.3",
"@angular/router": "^9.0.3",
"@angular/animations": "^10.2.5",
"@angular/common": "^10.2.5",
"@angular/compiler": "^10.2.5",
"@angular/core": "^10.2.5",
"@angular/forms": "^10.2.5",
"@angular/platform-browser": "^10.2.5",
"@angular/platform-browser-dynamic": "^10.2.5",
"@angular/platform-server": "^10.2.5",
"@angular/router": "^10.2.5",
"core-js": "^3.6.4",
"fstream": ">=1.0.12",
"lodash": ">=4.17.21",
"lodash.mergewith": ">=4.6.2",
"mixin-deep": ">=1.3.2",
"rxjs": "^6.5.4",
"set-value": ">=4.0.1",
"tslib": "^1.10.0",
"tslib": "^2.0.0",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.900.3",
"@angular/cli": "^9.0.3",
"@angular/compiler-cli": "^9.0.3",
"@angular/language-service": "^9.0.3",
"@angular-devkit/build-angular": "0.1002.4",
"@angular/cli": "^10.2.4",
"@angular/compiler-cli": "^10.2.5",
"@angular/language-service": "^10.2.5",
"@types/jasmine": "^3.5.7",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^13.7.6",
"codelyzer": "^5.2.1",
"jasmine-core": "^3.5.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^2.0.6",
"karma-jasmine": "^3.1.1",
"karma-jasmine-html-reporter": "^1.5.2",
"protractor": "^5.4.3",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"rxjs-tslint": "^0.1.7",
"tar": "^6.1.9",
"ts-node": "~8.6.2",
"tslint": "^6.0.0",
"typescript": "~3.6.4",
"tslint": "~6.1.0",
"typescript": "~4.0.8",
"webpack": "^4.41.6"
},
"description": "This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.3.8.",
"main": "index.js",
"author": "",
"license": "ISC"
}
}
File renamed without changes.
2 changes: 1 addition & 1 deletion stack/application/frontend/tsconfig.json
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "esnext",
"module": "es2020",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
67 changes: 65 additions & 2 deletions stack/application/frontend/tslint.json
Original file line number Diff line number Diff line change
@@ -4,17 +4,32 @@
"codelyzer"
],
"rules": {
"align": {
"options": [
"parameters",
"statements"
]
},
"array-type": false,
"arrow-parens": false,
"arrow-return-shorthand": true,
"deprecation": {
"severity": "warn"
},
"curly": true,
"import-blacklist": [
true,
"rxjs/Rx"
],
"interface-name": false,
"eofline": true,
"max-classes-per-file": false,
"import-spacing": true,
"indent": {
"options": [
"spaces"
]
},
"max-line-length": [
true,
140
@@ -48,7 +63,6 @@
"no-non-null-assertion": true,
"no-redundant-jsdoc": true,
"no-switch-case-fall-through": true,
"no-use-before-declare": true,
"no-var-requires": false,
"object-literal-key-quotes": [
true,
@@ -65,11 +79,60 @@
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": true,
"semicolon": {
"options": [
"always"
]
},
"space-before-function-paren": {
"options": {
"anonymous": "never",
"asyncArrow": "always",
"constructor": "never",
"method": "never",
"named": "never"
}
},
"no-input-rename": true,
"typedef-whitespace": {
"options": [
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
},
{
"call-signature": "onespace",
"index-signature": "onespace",
"parameter": "onespace",
"property-declaration": "onespace",
"variable-declaration": "onespace"
}
]
},
"no-output-rename": true,
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
"component-class-suffix": true,
"directive-class-suffix": true
"directive-class-suffix": true,
"variable-name": {
"options": [
"ban-keywords",
"check-format",
"allow-pascal-case"
]
},
"whitespace": {
"options": [
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type",
"check-typecast"
]
}
}
}