aboutsummaryrefslogtreecommitdiff
path: root/integration/snapshots/styled-components-output.hmr.js
blob: 1bf09ed2d446c3ad5f5cd3dd2733380272acb203 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import {
__HMRClient as Bun
} from "http://localhost:8080/__runtime.js";
import {
__require as require
} from "http://localhost:8080/__runtime.js";
import {
__HMRModule as HMR
} from "http://localhost:8080/__runtime.js";
import * as JSX from "http://localhost:8080/node_modules/react/jsx-dev-runtime.js";
var jsx = require(JSX).jsxDEV, fileName = "styled-components-output.js";

import * as $3b6c9f54 from "http://localhost:8080/node_modules/styled-components/dist/styled-components.esm.js";
var { default: styled} = require($3b6c9f54);
import * as $bbcd215f from "http://localhost:8080/node_modules/react/index.js";
var { default: React} = require($bbcd215f);
Bun.activate(false);

var hmr = new HMR(2972367994, "styled-components-output.js"), exports = hmr.exports;
(hmr._load = function() {
  const ErrorScreenRoot = styled.div`
  font-family: "Muli", -apple-system, BlinkMacSystemFont, Helvetica, Arial,
    sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  text-align: center;
  background-color: #0b2988;
  color: #fff;
  font-family: "Muli", -apple-system, BlinkMacSystemFont, Helvetica, Arial,
    sans-serif;
  line-height: 1.5em;

  & > p {
    margin-top: 10px;
  }

  & a {
    color: inherit;
  }
`;
  function test() {
    console.assert(React.isValidElement(jsx(ErrorScreenRoot, {}, undefined, true, {
      fileName,
      lineNumber: 698
    }, this)));
    testDone(import.meta.url);
  }
  hmr.exportAll({
    test: () => test
  });
})();
var $$hmr_test = hmr.exports.test;
hmr._update = function(exports) {
  $$hmr_test = exports.test;
};

export {
  $$hmr_test as test
};
ref='/ansg191/bun/commit/src/javascript/jsc/api/router.zig?h=jarred/upgrade-zig-2&id=d1922d474292f63ba2f6c0cf49a80fa1bc2fd623&follow=1'>[bun.js] fix unicode handling in RouterGravatar Jarred Sumner 1-3/+9 2022-03-02[bun.js] Fix crash due to incorrectly creating stringGravatar Jarred Sumner 1-3/+1 2022-03-02remove a threadlocalGravatar Jarred Sumner 2-12/+908 2022-03-02cleanup error printingGravatar Jarred Sumner 2-2/+5 2022-03-02Update global.zigGravatar Jarred Sumner 1-0/+17 2022-03-02Update fs.zigGravatar Jarred Sumner 1-0/+3 2022-03-02[bun run] Set more environment variablesGravatar Jarred Sumner 2-0/+55 2022-03-02clean up error message when CLI flag is invalidGravatar Jarred Sumner 1-1/+4 2022-03-02add `bun pm cache` and `bun pm cache rm` commandsGravatar Jarred Sumner 1-0/+20 2022-03-01[bun.js] `ResolveError.prototype.toString()` `BuildError.prototype.toString()`Gravatar Jarred Sumner 1-2/+94 2022-03-01add `allowBunRuntime` and `autoImportJSX` flags to Bun.TranspilerGravatar Jarred Sumner 1-1/+32 2022-03-01cleanup code that checks if it should send an HTTP bodyGravatar Jarred Sumner 2-6/+18 2022-03-01[JS Parser] Fix bug with `super` from adding class static blocksGravatar Jarred Sumner 1-1/+12 2022-03-01Update bundler.zigGravatar Jarred Sumner 1-1/+5 2022-03-01Remove unused boolGravatar Jarred Sumner 1-3/+0 2022-03-01[bun.js] Allow disabling runtime imports so bun can build for nodeGravatar Jarred Sumner 3-5/+11 2022-03-01[JS Parser] Make auto importing JSX a flag so the API is easierGravatar Jarred Sumner 1-295/+297 2022-03-01cleanupGravatar Jarred Sumner 1-2/+2 2022-03-01Update javascript.zigGravatar Jarred Sumner 1-50/+0 2022-03-01[bun.js] shim async fsGravatar Jarred Sumner 2-36/+226 2022-03-01[bun.js] Implement `setTimeout`, `setInterval`, `clearTimeout`, `clearInterval`Gravatar Jarred Sumner 11-41/+295 2022-02-27Update transpiler.test.jsGravatar Jarred Sumner 1-0/+8 2022-02-27[TS] Make `export {type foo}` output consistent with TS parserGravatar Jarred Sumner 1-3/+45 2022-02-27WASMGravatar Jarred Sumner 83-690/+10789