Caleb Evans

Results 100 comments of Caleb Evans

I too am having trouble running `next-pwa` in a Production environment. Many of the key requests are returning 404s after refreshing the initial page (supposedly when the service worker kicks...

Figured out the issue; turns out I had an old `index.html` in my `public` folder (from before I migrated my project to NextJS), and the `next-pwa` service worker was trying...

@envygeeks I'm experiencing the same issue—my CSS is compiling from Sass, but the output file is not compressed. I am using jekyll-assets v3.0.8 but am **not** using `autoprefixer-rails`. Here are...

Hi all, I've been watching this issue closely, and I would just like to add a few thoughts: I am using react-beautiful-dnd for one of my projects, and maybe the...

For everyone watching this thread: I have run into the same issue, and I plan to release a Rollup plugin soon that allows you to watch arbitrary files outside of...

Okay, I have just released v1.0.0 of [rollup-plugin-watch-globs](https://www.npmjs.com/package/rollup-plugin-watch-globs). The API usage is effectively identical to how @thekip described it in [his earlier comment](https://github.com/rollup/rollup/issues/3414#issuecomment-751699335): ```js // rollup.config.js import watchGlobs from 'rollup-plugin-watch-globs';...

@dekhotoshi Can you please provide me the code you are using to call `drawText`?

@xmcase How are you setting the canvas width? It will skew the canvas coordinate system if you try to change the canvas width/height with CSS; that is probably why your...

@flyingatm Thank you for the feedback! The handles functionality isn't something I plan to build out, but if you could elaborate on what you mean, perhaps I can offer a...

@flyingatm I think you could achieve this with a combination of two jCanvas features: Handle Events: https://projects.calebevans.me/jcanvas/plugins/handles/#events Drag Groups: https://projects.calebevans.me/jcanvas/docs/draggableLayers/#drag-groups With these two features: 1. Create your text layer and...