Re: [w3c/ServiceWorker] When should "imported scripts updated flag" be unset? (#1021)

@wanderview 

> Maybe we could make install completion wait until all outstanding import() loads are complete

We don't do this for things like `cache.addAll` so why should we do it here? Devs should do:

```js
import whatever from "./thing-i-always-need.js";

addEventListener('install', event => {
  event.waitUntil(
    import('./thing-i-sometimes-need.js')
  );
});
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/ServiceWorker/issues/1021#issuecomment-266708655

Received on Tuesday, 13 December 2016 10:57:23 UTC