boot

:boot-clj: https://boot-clj.github.io/ — build tooling for Clojure. Dev chat in #boot-dev
Karol Wójcik 2019-06-06T06:51:14.008400Z

Hello. What is a correct way to copy the files from one location to another using boot functions? I encountered sift, but as I can see it's only for moving the files.

2019-06-06T08:16:31.009100Z

@karol.wojcik Do you mean files in the fileset of boot or files outside of the fileset of boot?

Karol Wójcik 2019-06-07T07:07:02.012100Z

@jeroenvandijk Files in the fileset of boot

2019-06-06T21:22:51.010200Z

i'm reading about "gulp" from the js community. Is it fair to say that its similar to boot?

2019-06-06T21:31:32.010600Z

kinda, iirc the big difference is the object passed through plugins is mutable

2019-06-06T21:31:57.011Z

or rather, plugins mutate files in place vs. accepting immutable object

2019-06-06T21:32:37.011200Z

the closest thing in JS i’ve seen is broccoli, https://www.solitr.com/blog/2014/02/broccoli-first-release/

2019-06-06T21:37:08.011600Z

that would make sense.