Mattias Fjellvang

Results 315 comments of Mattias Fjellvang

Any ideas? This must be a pretty key feature. Copying vendor scripts to dist folder

I have tried with this in my javascript: import 'corejs-typeahead/dist/typeahead.bundle.min.js'; But that doesn't work. If I do: wp_enqueue_script('instantButler-typeahead-js', plugins_url('/node_modules/corejs-typeahead/dist/typeahead.bundle.min.js', __DIR__ ), array('jquery')); Then it works just fine.

Thanks ;) Would still be sweet to see an example of how to copy files. Found this and it did the trick: https://github.com/rollup/rollup/issues/579

@swashata I figure you must be busy, but would really like to know how this could be done. I am making a plugin, where I'd like to copy some files...

module.exports = { // Your LAN IP or host where you would want the live server // Override this if you know your correct external IP (LAN) // Otherwise, the...

You're welcome

This could be due to the fact that I don't really understand the: https://github.com/satackey/action-docker-layer-caching#docker-build What is the "post run"? Is there a full example somewhere?

I would love this as well; I have a statically generated site and I have around 3500 redirects that needs to be handled. Not sure if it's currently possible with...

My current, very hacky, workaround ``` /** * Only validate the changed fields * @return [type] [description] */ public function validateChangedFields() { $rules = []; foreach($this->getDirty() as $attribute => $value){...

What I meant by this PR was a way to only validate fields that gets changed. Say I have a User: ``` User: Firstname: Something (rules: min:2|max:255) Lastname: NULL (rules:...