Eirik Sletteberg 841a55bd68 Don't shadow the window global variable
This snippet:

```
import { window } from 'global';
```

will let you mock window variables in Jest tests.
However, it breaks hot module reloading in Vite,
because Vite injects code snippets in top of every
file:

```
window.STUFF = 'Vite injected some HMR code here';
import { window } from 'global';
// this fails: Uncaught ReferenceError: Cannot access 'window' before initialization
```

The simple solution is to rename `window` when importing it:

```
import { window as globalWindow } from 'global';
globalWindow.alert('hello world');
```

The code works like before, but Vite will be able to
inject its code snippet without interfering with the
rest of the code.
2021-04-04 18:36:16 +02:00
..
2021-03-25 10:01:17 +01:00
2021-02-03 22:34:44 +08:00
2021-02-03 22:34:44 +08:00
2021-03-15 17:31:59 +08:00
2020-05-16 13:24:10 +02:00
2020-12-04 15:14:48 +01:00