-
Notifications
You must be signed in to change notification settings - Fork 57
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
887 upgrade dependencies of libms #943
Merged
prasadtalasila
merged 49 commits into
feature/distributed-demo
from
887-upgrade-dependencies-of-libms
Oct 8, 2024
Merged
Changes from 48 commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
3024943
resolves #942
nichlaes b1a2933
resolves #941
nichlaes 50d2162
updated lock
nichlaes 1796cb8
resolves #940
nichlaes 2f9a5b3
resolves #939
nichlaes 3d81b00
resolves #938
nichlaes 5499e12
updated lock
nichlaes b19b0ad
resolves #937
nichlaes bc430ed
resolves #936
nichlaes 4a1e55b
resolves #935
nichlaes 03ee3fb
resolves #934
nichlaes b2c3fb1
resolves #933
nichlaes 82766c3
updated lock
nichlaes ee172a7
resolves #932
nichlaes 133fd70
resolves #931
nichlaes 5629497
resolves #930
nichlaes 96813ca
resolves #929
nichlaes 699c285
resolves #928
nichlaes ea25350
updated lock
nichlaes 2c6540c
updated packages
nichlaes 40606df
migrates to flat config file
nichlaes 88922ef
no longer supported
nichlaes 7ddcadd
fixed eslint errors
nichlaes 06b8d8c
Revert "resolves #942"
nichlaes cfa9cc8
Revert "resolves #941"
nichlaes b41a60f
Revert "updated lock"
nichlaes 1f4e12e
Revert "resolves #940"
nichlaes 40680fe
Revert "resolves #939"
nichlaes 954f236
Revert "resolves #938"
nichlaes b66e0cc
Revert "updated lock"
nichlaes 118b4ef
revert changes to runner
nichlaes c22d5e4
Revert "resolves #935"
nichlaes db582e7
Revert "resolves #934"
nichlaes 3d8ab1c
Revert "resolves #933"
nichlaes bd935a8
revert changes to runner
nichlaes 8680bcd
renamed eslint file
nichlaes 3ad2a72
renamed
nichlaes 344150c
changed to module
nichlaes ae93e55
updated config files
nichlaes bb58e4b
renamed config
nichlaes cd35cd3
updates configuration
nichlaes ab18ae7
remove deprecated version field
nichlaes 65a6182
Revert updated lock This reverts commit 50d2162a4eb7d1e0343666514a993…
nichlaes 99a2883
Revert updated lock
nichlaes 906b06a
update packages
nichlaes 9d12717
update package lock
nichlaes 9dbb9b9
update config
nichlaes 897f774
adds os matrix
nichlaes 4f8bc11
adds seperate checks for windows and linux
nichlaes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 was deleted.
Oops, something went wrong.
This file was deleted.
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,4 +1,3 @@ | ||
version: '3' | ||
services: | ||
libms: | ||
image: intocps/libms:latest | ||
|
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,60 @@ | ||
import { fixupConfigRules } from '@eslint/compat'; | ||
import { FlatCompat } from '@eslint/eslintrc'; | ||
import globals from 'globals'; | ||
import jest from 'eslint-plugin-jest'; | ||
import js from '@eslint/js'; | ||
import prettier from 'eslint-config-prettier'; | ||
import ts from '@typescript-eslint/eslint-plugin'; | ||
import tsParser from '@typescript-eslint/parser'; | ||
import imprt from 'eslint-plugin-import'; // 'import' is ambiguous & prettier has trouble | ||
|
||
const flatCompat = new FlatCompat(); | ||
|
||
export default [ | ||
{ | ||
...js.configs.recommended, | ||
files: ['src/**', 'test/**'], | ||
}, | ||
{ | ||
...fixupConfigRules(flatCompat.extends('airbnb-base')), | ||
files: ['src/**', 'test/**'], | ||
}, | ||
prettier, | ||
{ | ||
languageOptions: { | ||
globals: { | ||
...globals.jest, | ||
...globals.node, | ||
Atomics: 'readonly', | ||
SharedArrayBuffer: 'readonly', | ||
}, | ||
parser: tsParser, | ||
parserOptions: { | ||
project: './tsconfig.json', | ||
requireConfigFile: false, | ||
ecmaVersion: 2022, | ||
ecmaFeatures: { modules: true }, | ||
}, | ||
}, | ||
files: ['src/**', 'test/**'], | ||
plugins: { jest, '@typescript-eslint': ts, import: imprt, ts }, | ||
rules: { | ||
'import/no-extraneous-dependencies': ['error', { devDependencies: true }], | ||
'no-console': 'error', | ||
'import/first': 'error', | ||
'linebreak-style': 0, // disable linter linebreak rule, to allow for both unix and windows developement | ||
'import/no-unresolved': 'off', // Whatever IDE will pass an error if if the module is not found, so no reason for this.. | ||
'import/extensions': 'off', // That includes the production build.. We use linter for code checking / clean code optimization.. | ||
'no-use-before-define': 'off', | ||
}, | ||
ignores: [ | ||
'api/*', | ||
'build/*', | ||
'coverage/*', | ||
'dist/*', | ||
'node_modules/*', | ||
'script/*', | ||
'src/types.ts', | ||
], | ||
}, | ||
]; |
This file was deleted.
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import { createDefaultEsmPreset, type JestConfigWithTsJest } from 'ts-jest'; | ||
|
||
const jestConfig: JestConfigWithTsJest = { | ||
testEnvironment: 'node', | ||
transform: { | ||
...createDefaultEsmPreset().transform, | ||
'\\.[jt]sx?$": "ts-jest': [ | ||
'ts-jest', | ||
{ | ||
useESM: true, | ||
}, | ||
], | ||
}, | ||
collectCoverage: true, | ||
coverageReporters: ['text', 'cobertura', 'clover', 'lcov', 'json'], | ||
collectCoverageFrom: ['src/**/*.{ts,js}'], | ||
coveragePathIgnorePatterns: [ | ||
'node_modules', | ||
'./dist', | ||
'./src/app.module.ts', | ||
'./src/main.ts', | ||
'./src/bootstrap.ts', | ||
], | ||
extensionsToTreatAsEsm: ['.ts'], | ||
moduleFileExtensions: ['js', 'json', 'ts'], | ||
modulePathIgnorePatterns: [], | ||
coverageDirectory: '<rootDir>/coverage/', | ||
coverageThreshold: { | ||
global: { | ||
branches: 20, | ||
functions: 30, | ||
lines: 50, | ||
statements: 50, | ||
}, | ||
}, | ||
verbose: true, | ||
testRegex: './test/.*\\.spec.tsx?$', | ||
modulePaths: ['<rootDir>', '<rootDir>/src/', '<rootDir>/test/'], | ||
moduleDirectories: ['node_modules', 'src', 'test'], | ||
rootDir: './', | ||
roots: ['<rootDir>', 'src/', 'test/'], | ||
moduleNameMapper: { | ||
'^(\\.\\.?\\/.+)\\.jsx?$': '$1', | ||
}, | ||
}; | ||
|
||
export default jestConfig; |
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
File renamed without changes.
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gives the following error (only on Windows):
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't get that error