fix(core): update

This commit is contained in:
2019-02-20 23:54:38 +01:00
parent ff4c66b25a
commit 81383b5498
9 changed files with 890 additions and 241 deletions

View File

@ -14,7 +14,7 @@ export let src = (minimatchPathArrayArg: string[]): Transform => {
process.cwd(),
minimatchPath
);
smartfileArray = plugins.lodash.concat(smartfileArray, localSmartfileArray);
smartfileArray = [...smartfileArray, ...localSmartfileArray];
}
gulpStream.pipeSmartfileArray(smartfileArray);
};

View File

@ -1,7 +1,6 @@
import * as smartevent from 'smartevent';
import * as smartevent from '@pushrocks/smartevent';
import * as smartfile from '@pushrocks/smartfile';
import * as smartstream from 'smartstream';
import * as lodash from 'lodash';
import * as smartstream from '@pushrocks/smartstream';
import * as through2 from 'through2';
export { lodash, smartevent, smartfile, smartstream, through2 };
export { smartevent, smartfile, smartstream, through2 };