UNPKG

@controlla/cli

Version:

Command line interface for rapid Controlla projects development

18 lines (14 loc) 419 B
// THIS FILE SHOULD NOT BE VERSION CONTROLLED // https://github.com/NekR/self-destroying-sw self.addEventListener('install', function (e) { self.skipWaiting() }) self.addEventListener('activate', function (e) { self.registration.unregister() .then(function () { return self.clients.matchAll() }) .then(function (clients) { clients.forEach(client => client.navigate(client.url)) }) })