renamed dbgate packages, because of npmjs policy

This commit is contained in:
Jan Prochazka
2020-11-16 21:59:08 +01:00
parent 09b26319f0
commit f7ebcd9537
96 changed files with 179 additions and 179 deletions

View File

@@ -1,6 +1,6 @@
{
"version": "1.0.0",
"name": "@dbgate/tools",
"name": "dbgate-tools",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
@@ -13,7 +13,7 @@
"lib"
],
"devDependencies": {
"@dbgate/types": "^1.0.0",
"dbgate-types": "^1.0.0",
"@types/node": "^13.7.0",
"jest": "^24.9.0",
"ts-jest": "^25.2.1",

View File

@@ -1,4 +1,4 @@
import { DatabaseInfo, DatabaseInfoObjects } from '@dbgate/types';
import { DatabaseInfo, DatabaseInfoObjects } from 'dbgate-types';
export function fullNameFromString(name) {
const m = name.match(/\[([^\]]+)\]\.\[([^\]]+)\]/);

View File

@@ -1,4 +1,4 @@
import { TableInfo } from '@dbgate/types';
import { TableInfo } from 'dbgate-types';
import _ from 'lodash';
export function prepareTableForImport(table: TableInfo): TableInfo {