1961 Commits

Author SHA1 Message Date
Michael Shilman
ca7182ff5f v6.3.0-alpha.7 2021-04-14 10:19:40 +08:00
Michael Shilman
0ddd4ca329 Update git head to 6.3.0-alpha.6, update yarn.lock 2021-04-13 16:37:55 +08:00
Michael Shilman
60181528cf v6.3.0-alpha.6 2021-04-13 16:31:17 +08:00
Michael Shilman
2257c53699 Update git head to 6.3.0-alpha.5, update yarn.lock 2021-04-11 23:46:37 +08:00
Michael Shilman
9030fc7598 v6.3.0-alpha.5 2021-04-11 23:40:18 +08:00
Michael Shilman
0415209d04 Update git head to 6.3.0-alpha.4, update yarn.lock 2021-04-10 20:53:31 +08:00
Michael Shilman
157857bbe1 v6.3.0-alpha.4 2021-04-10 20:47:14 +08:00
Michael Shilman
3ec358f71c
Merge pull request #14472 from eirslett/dont-shadow-window
Core: Don't shadow the window global variable
2021-04-10 20:30:06 +08:00
Michael Shilman
650a0662d6 Update git head to 6.3.0-alpha.3, update yarn.lock 2021-04-10 12:42:56 +08:00
Michael Shilman
4797065261 v6.3.0-alpha.3 2021-04-10 12:36:35 +08:00
Michael Shilman
316b500adb
Merge branch 'next' into dont-shadow-window 2021-04-10 12:09:28 +08:00
Michael Shilman
ea7d0512d2 Update git head to 6.3.0-alpha.2, update yarn.lock 2021-04-09 13:13:14 +08:00
Michael Shilman
8a57399297 v6.3.0-alpha.2 2021-04-09 13:07:04 +08:00
Michael Shilman
d318d2eea0 Update git head to 6.3.0-alpha.1, update yarn.lock 2021-04-09 00:32:09 +08:00
Michael Shilman
7d99c9e0bf v6.3.0-alpha.1 2021-04-09 00:25:04 +08:00
Michael Shilman
f74e495b1f Update git head to 6.3.0-alpha.0 2021-04-08 18:02:07 +08:00
Michael Shilman
7739aace24 v6.3.0-alpha.0 2021-04-08 17:55:27 +08:00
Michael Shilman
0f60b706f4 Update git head to 6.2.5 2021-04-07 18:46:37 +08:00
Michael Shilman
fd587f5526 v6.2.5 2021-04-07 18:36:29 +08:00
Michael Shilman
a8ffef618a Update git head to 6.2.4 2021-04-07 12:10:59 +08:00
Michael Shilman
7d8a84165e v6.2.4 2021-04-07 12:04:44 +08:00
Michael Shilman
6de2073645 Update git head to 6.2.3 2021-04-05 22:34:47 +08:00
Michael Shilman
8c2eac34a9 v6.2.3 2021-04-05 22:28:10 +08: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
Michael Shilman
2c01275459 Update git head to 6.2.2 2021-04-02 17:56:42 +08:00
Michael Shilman
10fc28856b v6.2.2 2021-04-02 17:50:20 +08:00
Michael Shilman
b0905769fc Update git head to 6.2.1 2021-03-31 12:10:13 +08:00
Michael Shilman
3d5d666f4e v6.2.1 2021-03-31 12:03:54 +08:00
Michael Shilman
1db9c3cee8 Update git head to 6.2.0 2021-03-31 00:07:28 +08:00
Michael Shilman
829c72e437 v6.2.0 2021-03-31 00:00:43 +08:00
Michael Shilman
6be8b92053 Update git head to 6.2.0-rc.13 2021-03-30 18:55:14 +08:00
Michael Shilman
c1dfd5babe v6.2.0-rc.13 2021-03-30 18:47:23 +08:00
Michael Shilman
6ec57508a1 Update git head to 6.2.0-rc.12 2021-03-30 10:55:07 +08:00
Michael Shilman
5ee73396db v6.2.0-rc.12 2021-03-30 10:48:28 +08:00
Eirik Sletteberg
f74a04a411 Make Storybook esbuild-compatible
This would be a good fundament for adding Snowpack/Vite
builder support. Currently, Storybook UI can be built by
Webpack or tsc, but esbuild transpiles .ts file-by-file
and therefore has some  caveats:

https://esbuild.github.io/content-types/#typescript-caveats

This change adds isolatedModules: true to tsconfig.json,
and fixes a few places in the Storybook source code.
The result has been briefly tested with esbuild - with
these changes, it's possible to build Storybook UI
using Vite.
2021-03-29 22:18:41 +02:00
Michael Shilman
8f89064ffa Update git head to 6.2.0-rc.11 2021-03-29 16:41:06 +08:00
Michael Shilman
b2100d195f v6.2.0-rc.11 2021-03-29 16:33:41 +08:00
Michael Shilman
fc328a71b2 Update git head to 6.2.0-rc.10 2021-03-26 16:04:19 +08:00
Michael Shilman
a667853246 v6.2.0-rc.10 2021-03-26 15:57:35 +08:00
Michael Shilman
d4be089b63 Update git head to 6.2.0-rc.9 2021-03-25 00:51:49 +08:00
Michael Shilman
b100a45b69 v6.2.0-rc.9 2021-03-25 00:44:24 +08:00
Michael Shilman
3be763e32a Update git head to 6.2.0-rc.8 2021-03-23 10:14:16 +08:00
Michael Shilman
229ae2956b v6.2.0-rc.8 2021-03-23 10:07:45 +08:00
Michael Shilman
1aa97daeef Update git head to 6.2.0-rc.7 2021-03-23 00:28:53 +08:00
Michael Shilman
ea154d612f v6.2.0-rc.7 2021-03-23 00:21:22 +08:00
Michael Shilman
6fae26dfeb Update git head to 6.2.0-rc.6 2021-03-21 00:30:23 +08:00
Michael Shilman
9140a28845 v6.2.0-rc.6 2021-03-21 00:24:15 +08:00
Michael Shilman
4ffe82ec30 Update git head to 6.2.0-rc.5 2021-03-20 16:59:05 +08:00
Michael Shilman
0c13a371f4 v6.2.0-rc.5 2021-03-20 16:52:59 +08:00
Michael Shilman
2e920a15b4 Update git head to 6.2.0-rc.4 2021-03-19 13:44:10 +08:00