Jeremy Mullis

Results 18 comments of Jeremy Mullis

Here's a more complete example: ```JS var Rsync = require('rsync'); // Build the command var rsync = new Rsync() .shell('ssh') .flags('az') .source('/path/to/source') .destination('server:/path/to/destination') .output( function (data) { console.log(data.toString('utf-8')); }, function...

This seems to be an issue with the Interval plugin. I can import all of the other packages without any errors. ``` import Alpine from 'alpinejs'; import Dbg from '@alpine-collective/toolkit-dbg';...

The specific use case here is some Wordpress BS. The block editor does some weird stuff with inline styles and variables. I agree; I can't think of a lot of...

I experimented with this before. In order for PBEM to work, there are some special server settings that need to be set. Normally when you start a PBEM game this...

I created a PR that attempts to fix this. #116

> what is the use case you have for a just frontend only scripts. Off the top of my head… Let's say I've got a simple carousel of testimonials. On...

A front-end **only** script might not be worth including by default, though I suspect this will be useful in practice. I get that it's not ideal. More important is just...

So, I guess if you need JS on the frontend, then the _CORRECT_ approach would be to edit your `init.php`, so that your `block.build.js` file is enqueued in the `BLOCKNAME_cgb_block_assets`...

> it seemed to me like @drdogbot7 is suggesting to load all editor javascript in the frontend as well. That IS what I'm suggesting. It feels kinda wrong to me...