4 Commits

Author SHA1 Message Date
jonniebigodes
0a88831c39 minor updates for the API section for 6.4 2021-11-04 23:51:08 +00:00
Ian VanSchooten
f3a44f0c96 Do not try to named import from global 2021-05-25 15:59:46 -04:00
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
jonniebigodes
99aa694e9d initial snippets for api section 2020-08-11 01:11:41 +01:00