0.1.0 • Published 7 years ago

gulp-elm-find-dependencies v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

gulp-elm-find-dependencies Circle CI

Given an *.elm file, it will use find-elm-dependencies to aggregate all of the dependencies for that tree. For each file found it will emit a vinyl object.

Example

const elmFindDependencies = require('gulp-elm-find-dependencies')

gulp.task('find-deps', () => {
  return gulp.src('Main.elm')
    .pipe(elmFindDependencies())
    .pipe(gulp.dest('dependencies'))
})