-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to Node-18 and NG-15 (#1550)
* kick-off node 18 upgrade * use pay component at local * ng update @angular/core@12 @angular/cli@12 --force * ng update @angular/material@12 --force * ng update @angular/core@13 @angular/cli@13 --force * ng update @angular/material@13 --force * ng update @angular/core@14 @angular/cli@14 --force * cdk 14 * ts version * upgraes for fix * upgrade rpx-xui-translation * upgrade yargs-parser * upgrade cli to 15 * fix damn ng breakdown * ng update @angular/material@14 --force * ng update @angular/core@15 @angular/cli@15 --force * ng update @angular/material@15 --force * correct compilation errors after upgrades * ignore angular cache * set new major version * add yarn release file * comment out broken lint task * temporarily use ccpay-component from local * fix tests * fix tests * upgrade to media viewer pre-release * update version tag * delete local ccpay dist folder * use ccpay component prerelease * skip the tasks (to be fixed later on) * remove steps to unblock pre-release * use node 14 for release * Code tide * package json update * fix update package.json file and code tidy * fix update package.json file * fix update package.json file and code tidy * package.json file update * Using legacy angular material * package.json version update * fix: EXUI-787 - Fixed lint srcipt, lint issues, code issue. Code tidy * updated codebase * fix: EXUI-790 unit test now working; EXUI-996- Fixed dateTime Picker; Fix issue probate buttons - cancel and continue button * package.json updated * Update typography.scss * Version update * Update npmpublish.yml * update polling service inline with sonarcloud - Security Hotspot * code tidy * added updated fork version of rx-polling library * fix - EXUI-996 - fix issue with incorrect date formate * App version updated and code tidy * Update RELEASE-NOTES.md * version update * Update case-file-view-folder.component.ts * Vesion update * update test and karma config * Update karma.conf.js * Update case-file-view-folder-selector.component.spec.ts * ccpay-web-component version updated * version update * fix broken functional test and update toolkit version * version update * rpx-xui-translation version update - 1.0.1 * @olusegz07 rpx-xui-translation version update - 1.0.2 --------- Co-authored-by: olusegun odunukan <[email protected]> Co-authored-by: Olu <[email protected]>
- Loading branch information
1 parent
97e7c32
commit b51ec10
Showing
148 changed files
with
7,792 additions
and
5,042 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
module.exports = { | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended' | ||
], | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
project: [ | ||
'./tsconfig.json', | ||
'./src/tsconfig.app.json', | ||
'./src/tsconfig.spec.json', | ||
'./api/tsconfig.json' | ||
], | ||
tsconfigRootDir: __dirname | ||
}, | ||
plugins: ['@typescript-eslint'], | ||
root: true, | ||
rules: { | ||
'@typescript-eslint/ban-ts-comment': 'off', | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/no-extra-semi': 'off', | ||
'@typescript-eslint/no-inferrable-types': 'off', | ||
'@typescript-eslint/no-var-requires': 'off', | ||
'array-bracket-spacing': 'error', | ||
'arrow-parens': ['error', 'always'], | ||
'arrow-spacing': 'error', | ||
'block-spacing': 'error', | ||
'brace-style': ['error', '1tbs'], | ||
'comma-dangle': ['error', 'never'], | ||
'comma-spacing': 'error', | ||
'comma-style': 'error', | ||
'computed-property-spacing': 'error', | ||
'curly': ['error', 'all'], | ||
'dot-notation': 'error', | ||
'eol-last': 'error', | ||
'eqeqeq': 'error', | ||
'func-call-spacing': ['error', 'never'], | ||
// 'func-style': ['error', 'expression'], | ||
'getter-return': 'error', | ||
'grouped-accessor-pairs': ['error', 'getBeforeSet'], | ||
'key-spacing': 'error', | ||
'keyword-spacing': 'error', | ||
'indent': ['error', 2, { | ||
'SwitchCase': 1 | ||
}], | ||
'linebreak-style': 'error', | ||
'lines-between-class-members': ['error', 'always', { | ||
'exceptAfterSingleLine': true | ||
}], | ||
'new-parens': ['error', 'always'], | ||
'no-case-declarations': 'off', | ||
'no-else-return': 'error', | ||
'no-empty': 'error', | ||
// 'no-empty-function': ['error', { | ||
// 'allow': ['constructors'] | ||
// }], | ||
'no-extra-boolean-cast': 'off', | ||
'no-extra-semi': 'error', | ||
'no-mixed-spaces-and-tabs': 'error', | ||
'no-multi-spaces': 'error', | ||
'no-multiple-empty-lines': ['error', { | ||
'max': 1, | ||
'maxEOF': 1 | ||
}], | ||
'no-prototype-builtins': 'off', | ||
'no-tabs': 'error', | ||
'no-trailing-spaces': 'error', | ||
'no-whitespace-before-property': 'error', | ||
'no-unreachable': 'error', | ||
'no-unused-expressions': ['error', { | ||
'allowTernary': true | ||
}], | ||
'no-var': 'error', | ||
// 'object-curly-newline': ['error', { 'multiline': true }], | ||
'object-curly-spacing': ['error', 'always'], | ||
// 'object-property-newline': 'error', | ||
'padded-blocks': ['error', 'never'], | ||
'prefer-const': 'error', | ||
'quotes': ['error', 'single'], | ||
'semi': ['error', 'always', { | ||
'omitLastInOneLineBlock': false | ||
}], | ||
'semi-spacing': 'error', | ||
'semi-style': ['error', 'last'], | ||
'space-in-parens': ['error', 'never'], | ||
'switch-colon-spacing': 'error' | ||
} | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
14.17.0 | ||
18.17.0 |
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 |
---|---|---|
|
@@ -16,4 +16,4 @@ | |
"files": [ | ||
"./typings.d.ts" | ||
] | ||
} | ||
} |
555 changes: 278 additions & 277 deletions
555
.yarn/releases/yarn-3.5.0.cjs → .yarn/releases/yarn-3.6.4.cjs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
nodeLinker: node-modules | ||
compressionLevel: mixed | ||
|
||
npmAuthToken: "${NODE_AUTH_TOKEN:-}" | ||
enableGlobalCache: false | ||
|
||
npmPublishRegistry: "${NPM_PUBLISH_REGISTRY:-}" | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-3.5.0.cjs | ||
yarnPath: .yarn/releases/yarn-3.6.4.cjs |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85641,4 +85641,4 @@ | |
} | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.