Arthur Stolyar
Arthur Stolyar
Here is an issues with detailed description: https://github.com/NekR/offline-plugin/issues/77
```js new OfflinePlugin({ caches: { main: [':rest:', '/app-shell.html'], additional: [':externals:'], optional: [] }, excludes: ['app-shell.html'], externals: ['/app-shell.html'] }) ``` This should exclude `app-shell.html` from build assets (assuming it's there by...
Hey, do you think you still need to use custom version of `offline-plugin`?
> Obsolete polyfill for the ServiceWorker cache API. Chrome 46 and Opera 33 support addAll now. I think this is wrong since `addAll()` gets new algorithm soon. I am not...
... a link all LICENSE logo link to that repo (hence having logo licensed in that repo separately too).
It would be good to have ability to evaluate attribute name. For example: ``` javascript ``` Might be transpiled to: ``` javascript Component({ [attr]: "value" }); ``` Yes, this is...
Details here: https://twitter.com/stefanpenner/status/525318145150824448
Firefox stack trace is more complicated than Chrome stack trace. Also at this moment there is not found documentation for it. Good point to start is Debugger panel of native...
This code produces 2 _log promises_ instead of one. ``` javascript Promise.resolve(123).then(function(val) { return new Promise(function(resolve) { setTimeout(function() { resolve(val + ' resolved 2'); }, 2000); }); }); ``` But...