-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/fix lower case all column names option (#131)
* fixed 'lowerCaseAllColumnNames' option * updated nmig version * updated dependencies * updated configuration * fixed comment
- Loading branch information
1 parent
3b31651
commit 06417d1
Showing
8 changed files
with
1,098 additions
and
548 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
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
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,6 +1,6 @@ | ||
{ | ||
"name": "nmig", | ||
"version": "6.1.0", | ||
"version": "6.1.1", | ||
"description": "The database migration app", | ||
"author": "Anatoly Khaytovich<[email protected]>", | ||
"license": "GPL-3.0", | ||
|
@@ -12,30 +12,31 @@ | |
"node": ">=18.16.1" | ||
}, | ||
"dependencies": { | ||
"@types/node": "20.4.4", | ||
"@types/uuid": "9.0.2", | ||
"@types/pg": "8.10.2", | ||
"@types/pg-copy-streams": "1.2.2", | ||
"@types/node": "22.5.1", | ||
"@types/uuid": "10.0.0", | ||
"@types/pg": "8.11.8", | ||
"@types/pg-copy-streams": "1.2.5", | ||
"json2csv": "5.0.7", | ||
"mysql2": "3.5.2", | ||
"pg": "8.11.1", | ||
"mysql2": "3.11.0", | ||
"pg": "8.12.0", | ||
"pg-copy-streams": "6.0.6", | ||
"uuid": "9.0.0" | ||
"uuid": "10.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/tape": "5.6.0", | ||
"@types/tape": "5.6.4", | ||
"@typescript-eslint/eslint-plugin": "5.61.0", | ||
"@typescript-eslint/parser": "5.61.0", | ||
"eslint": "8.44.0", | ||
"prettier": "3.0.0", | ||
"tape": "5.6.6", | ||
"typescript": "5.1.6" | ||
"tape": "5.8.1", | ||
"typescript": "5.5.4" | ||
}, | ||
"scripts": { | ||
"build": "tsc --incremental -p tsconfig.json", | ||
"lint": "npx eslint . --ext .ts", | ||
"format": "npx prettier . --ignore-path ./.prettierignore --write && git status", | ||
"flb": "npm run format && npm run lint && npm run build", | ||
"fb": "npm run format && npm run build", | ||
"start": "node dist/src/Main.js", | ||
"test": "node dist/test/Main.test.js" | ||
}, | ||
|
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