Skip to content

Commit

Permalink
fix(tabstractdatabase): remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
Itee committed Jul 8, 2021
1 parent 904105a commit b55b778
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions configs/rollup.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ function CreateRollupConfigs ( options ) {
const outputPath = ( isProd ) ? path.join( output, `${ fileName }.${ format }.min.js` ) : path.join( output, `${ fileName }.${ format }.js` )

configs.push( {
input: input,
external: [
input: input,
external: [
'path',
'buffer',
'fs',
Expand All @@ -95,7 +95,7 @@ function CreateRollupConfigs ( options ) {
'itee-utils',
'itee-core'
],
plugins: [
plugins: [
commonjs( {
include: 'node_modules/**'
} ),
Expand All @@ -104,7 +104,7 @@ function CreateRollupConfigs ( options ) {
} ),
isProd && terser()
],
onwarn: ( {
onwarn: ( {
loc,
frame,
message
Expand Down
1 change: 0 additions & 1 deletion sources/databases/TAbstractDatabase.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
*/

import {
isNotArray,
isNull,
isUndefined
} from 'itee-validators'
Expand Down

0 comments on commit b55b778

Please sign in to comment.