Results 19 comments of Greg

Checking in on this. It's been awhile; any progress?

I may be misusing Basset in this context; if so, I apologize, and would appreciate being pointed in the right direction. Right now, it's possible to dynamically add files to...

Ah, I didn't notice the `order()` method. That'll work pretty well, I think. As to dynamically loading assets, I think it's a really powerful way to do things, particularly in...

`order` gets the job done, but it's not ideal. It sort of looks like https://github.com/kriswallsmith/assetic/pull/362 is going to solve this in some capacity, so I guess once that's completed, it...

We've been seeing the issue here a few times. For us, it manifests as this error when starting docker-sync: `Fatal error: No file monitoring helper program found` `brew unlink unox...

I realize this ticket is almost 2 years old, but this could be accomplished by running something like this: ```golang import "github.com/gobuffalo/pop" migr, _ := pop.NewFileMigrator("./migrations", conn) migr.Up() ``` or...

Hmm, that didn't work for me. It also left the uploaded file there with a status of `removed`.

Couple of recommendations on this: 1. Squash the commits (`git rebase`) - it's cleaner 2. Something like this to also remove the file from vue-clip's `files` prop: ``` removeFile(file) {...

I _think_ it should just work depending on which API key you give it. Is that not the case?

So I've been digging into this, and due to the way this needs to be implemented with the callbacks and everything - and also needs to interface with any code...