-
Notifications
You must be signed in to change notification settings - Fork 15
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
Upgrade knex(v2.4.2)
and typescript(v5.0.4)
to latest version
#198
Conversation
@kshitish182 One suggestion. Can we separate the core changes from the example changes? Let's create another PR just for the example changes. |
2b983b0
to
47088ef
Compare
@kshitish182 I still see changes in the example directory. Can you take a look? |
I have reverted those changes. I have left one file change as it is since it was basically a bug fix. |
@@ -58,7 +59,7 @@ export async function loadConfig(configFilename: string = CONFIG_FILENAME): Prom | |||
|
|||
log('Resolved config file.'); | |||
|
|||
const loaded = mergeDeepRight(DEFAULT_CONFIG, loadedConfig) as Configuration; | |||
const loaded = mergeDeepRight<Configuration, Configuration>(DEFAULT_CONFIG, loadedConfig); |
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.
👍
Upgrade
knex(v2.4.2)
andtypescript(v5.0.4)
to latest versionStuffs done
knex
importsmssql
based on the respective update onknex
I have tested all the major features on the example apps and everything looks good. Ran the tests locally as well and all passed.