diff --git a/configs/rollup.conf.js b/configs/rollup.conf.js index 978cac0..20df904 100644 --- a/configs/rollup.conf.js +++ b/configs/rollup.conf.js @@ -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', @@ -95,7 +95,7 @@ function CreateRollupConfigs ( options ) { 'itee-utils', 'itee-core' ], - plugins: [ + plugins: [ commonjs( { include: 'node_modules/**' } ), @@ -104,7 +104,7 @@ function CreateRollupConfigs ( options ) { } ), isProd && terser() ], - onwarn: ( { + onwarn: ( { loc, frame, message diff --git a/sources/databases/TAbstractDatabase.js b/sources/databases/TAbstractDatabase.js index 9ab1538..070bf4d 100644 --- a/sources/databases/TAbstractDatabase.js +++ b/sources/databases/TAbstractDatabase.js @@ -9,7 +9,6 @@ */ import { - isNotArray, isNull, isUndefined } from 'itee-validators'