Chris Malven

Results 21 comments of Chris Malven

@jrochkind You're definitely right, I should add better error handling for this. I appreciate the suggestion.

[1.5.0](https://github.com/cmalven/vite-plugin-sass-glob-import/releases/tag/1.5.0) will display a console warning when a glob pattern doesn't match existing directories. I opted for this instead of throwing a full error because I frequently intentionally include glob...

Yes, in my example I don't even add a `vendor-customization` directory until I actually need it, but the glob import is still in the code. So I think my use-case...

@jrochkind I can't say what Ruby Sass did way back in the day, but I can say what the most popular sass glob plugin for Gulp does (https://www.npmjs.com/package/gulp-sass-glob, still at...

@raray Yep, that's unfortunate. I was hoping they'd expand the API so that you could listen for `create` and `unlink` events on specific grep patterns. Seems like that's unlikely to...

Is it possible to queue feeds sequentially directly through a module? In my specific case, I'd like to create a dashboard widget that allows users to easily queue up certain...

> [@cmalven](https://github.com/cmalven) right now the sequential logic is bound to the CLI and associate queue job, but you could trigger that like: > > ``` > Craft::$app->runAction('feed-me/feeds/queue', [1, 2, 3]);...

@timkelty Still getting a `Page not found`, this time `Unable to resolve the request "import/feed-me/feeds/queue".` where `import` is the namespace of the module that is calling `$this->run('feed-me/feeds/queue', [1, 3, 2]);`

@timkelty _really_ appreciate you sticking with me on this! `$this->run('/feed-me/feeds/queue', [1, 2, 3])` still leads to an `Invalid Route`, but interestingly this time `Unable to resolve the request: feed-me/feeds/queue` -...

Thanks @timkelty. I'm still getting the same error with your code, but I noticed that your example uses `yii\console\Controller` but mine is using `craft\web\Controller` because I'm calling it from a...