Jeff Posnick

Results 297 comments of Jeff Posnick
trafficstars

Boo. Just tried another `gulp publish` with #1179 merged, and I'm getting the exact same error.

For future reference, while this bug is still open, you can resume the publishing process after this failure by running the following two commands: ```sh $ gulp publish:cdn+git $ gulp...

Breaking things up into two steps seems to be something that we're fine with, so I'm closing this out.

FWIW, if you skip the test suite (`gulp publish --distTag=latest --skipTests`) then CDN publishing succeeds. So the current issue seems to be due to an interplay between our test runner...

Thanks for the request. We can look into alternatives to `inquirer`, and I think we'll also be switching from `rollup` to `esbuild` (or `swc`) in Workbox v7 (#3002), which should...

I think we're going to re-evaluate how we ship our ES modules in Workbox v7 (see #2797) as a breaking change. I don't think we're going to see any changes...

This is an important area, but not something that we've developed specific guidance for, unfortunately. My general recommendation would be to avoid listing any locale-specific resources in your `staticFileGlobs`, and...

Strictly speaking, even if you pass in a full path to a single file without any wildcards, the code will still interpret that as a `glob` pattern. It sounds like...

What's going on within the library is: 1. It takes the [array of `glob` patterns from `staticFileGlobs`](https://github.com/GoogleChrome/sw-precache/blob/cbca88f9fbdcfb6dfadb7c25fd9a5a7709d6a45f/lib/sw-precache.js#L97). (There's no way to specify a static file _path_, only a _pattern_ which...