noe reading correctly

This commit is contained in:
2017-04-30 00:25:31 +02:00
parent be2fd470d6
commit 3cd7355872
33 changed files with 445 additions and 18 deletions
+26
View File
@@ -0,0 +1,26 @@
// this file contains the implementation of the standard gulp api
import * as plugins from './smartgulp.plugins'
import { GulpStream } from './smartgulp.classes.gulpstream'
import { Transform } from 'stream'
import { Smartfile } from 'smartfile'
export let src = (minimatchPathArrayArg: string[]): Transform => {
let gulpStream = new GulpStream()
let handleFiles = async () => {
let smartfileArray: Smartfile[] = []
for (let minimatchPath of minimatchPathArrayArg) {
let localSmartfileArray = await plugins.smartfile.fs.fileTreeToObject(process.cwd(), minimatchPath)
smartfileArray = plugins.lodash.concat(smartfileArray, localSmartfileArray)
}
gulpStream.pipeSmartfileArray(smartfileArray)
}
handleFiles().catch(err => {
console.log(err)
})
return gulpStream.stream
}
export let dest = () => {
}