Skip to content

Commit d3fac88

Browse files
file rename
1 parent 7993727 commit d3fac88

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/base.js renamed to src/TinySQL.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Client } from 'pg';
44
import EventEmitter from 'events';
55
import { objType } from 'tiny-essentials';
66

7-
import TinySqlQuery from './query';
7+
import TinySqlQuery from './TinySqlQuery';
88

99
/**
1010
* TinySQL is a wrapper for basic SQL operations on a local storage abstraction.

src/query.js renamed to src/TinySqlQuery.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Client } from 'pg';
22
import { objType } from 'tiny-essentials';
3-
import TinySqlTags from './tag';
3+
import TinySqlTags from './TinySqlTags';
44

55
const clientBase = new Client();
66

File renamed without changes.

src/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import TinySQL from './base';
2-
import TinySqlQuery from './query';
3-
import TinySqlTags from './tag';
1+
import TinySQL from './TinySQL';
2+
import TinySqlQuery from './TinySqlQuery';
3+
import TinySqlTags from './TinySqlTags';
44

55
export { TinySqlQuery, TinySqlTags };
66

0 commit comments

Comments
 (0)