File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33 "isRoot" : true ,
44 "tools" : {
55 "fantomas" : {
6- "version" : " 7.0.5 " ,
6+ "version" : " 7.0.6 " ,
77 "commands" : [
88 " fantomas"
99 ],
1010 "rollForward" : false
1111 },
1212 "fable" : {
13- "version" : " 5.0 .0" ,
13+ "version" : " 5.13 .0" ,
1414 "commands" : [
1515 " fable"
1616 ],
1717 "rollForward" : false
1818 }
1919 }
20- }
20+ }
Original file line number Diff line number Diff line change 11
22import { ImportedName } from "ImportedModule";
3- import { minValue, day } from "./fable_modules/fable-library-js.5.0 .0/Date.js";
4- import { int32ToString } from "./fable_modules/fable-library-js.5.0 .0/Util.js";
3+ import { minValue, day } from "./fable_modules/fable-library-js.5.13 .0/Date.js";
4+ import { int32ToString } from "./fable_modules/fable-library-js.5.13 .0/Util.js";
55
66export function Test2() {
77 return <ImportedName x="y"
Original file line number Diff line number Diff line change 11
2- import { some } from "./fable_modules/fable-library-js.5.0.0/Option.js";
32
43export function clicked2(evt) {
5- console.log(some( evt.type) );
4+ console.log(evt.type);
65}
76
87export function Test() {
98 return <div onClick={(_arg_6) => {
10- console.log(some( "clicked1") );
9+ console.log("clicked1");
1110 }}>
1211 <h1 onClick={(evt) => {
1312 clicked2(evt);
1413 }}>
1514 Hello
1615 </h1>
1716 <h2 on:click={(_arg) => {
18- console.log(some( "clicked3") );
17+ console.log("clicked3");
1918 }}
2019 on:change={(_arg_1) => {
21- console.log(some( "changed") );
20+ console.log("changed");
2221 }}
2322 on:load={(_arg_2) => {
24- console.log(some( "loaded") );
23+ console.log("loaded");
2524 }}>
2625 Hello
2726 </h2>
2827 <h3 id="test"
2928 onClick={(_arg_3) => {
30- console.log(some( "clicked4") );
29+ console.log("clicked4");
3130 }}
3231 on:change={(_arg_4) => {
33- console.log(some( "changed") );
32+ console.log("changed");
3433 }}
3534 on:load={(_arg_5) => {
36- console.log(some( "loaded") );
35+ console.log("loaded");
3736 }} />
3837 </div>;
3938}
Original file line number Diff line number Diff line change 11
2- import { some } from "./fable_modules/fable-library-js.5.0.0/Option.js";
32
43export function Test() {
5- console.log(some( "Hello, World!") );
4+ console.log("Hello, World!");
65 return <body />;
76}
87
Original file line number Diff line number Diff line change 11
2- import { int32ToString } from "./fable_modules/fable-library-js.5.0 .0/Util.js";
2+ import { int32ToString } from "./fable_modules/fable-library-js.5.13 .0/Util.js";
33
44export function Test(id, hello) {
55 const helloWorld = hello + " world";
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ let ``Fable version`` () =
1313 }
1414 |> Command.execute
1515 |> Output.toText
16- |> shouldEqual " 5.0 .0"
16+ |> shouldEqual " 5.13 .0"
1717
1818[<Fact>]
1919let ``Hello world`` () =
Original file line number Diff line number Diff line change 11
2- import { int32ToString } from "./fable_modules/fable-library-js.5.0 .0/Util.js";
3- import { toArray } from "./fable_modules/fable-library-js.5.0 .0/Seq.js";
4- import { rangeDouble } from "./fable_modules/fable-library-js.5.0 .0/Range.js";
2+ import { int32ToString } from "./fable_modules/fable-library-js.5.13 .0/Util.js";
3+ import { toArray } from "./fable_modules/fable-library-js.5.13 .0/Seq.js";
4+ import { rangeDouble } from "./fable_modules/fable-library-js.5.13 .0/Range.js";
55
66export function Component(hello, children) {
77 return <h1>
Original file line number Diff line number Diff line change 11
2- import { some } from "./fable_modules/fable-library-js.5.0.0/Option.js";
32import { createSignal } from "solid-js";
43
54export function Component(getText) {
65 return <h1 onClick={(_arg) => {
7- console.log(some( getText() ));
6+ console.log(getText());
87 }}>
98 {getText()}
109 </h1>;
Original file line number Diff line number Diff line change 11
2- import { int32ToString } from "./fable_modules/fable-library-js.5.0 .0/Util.js";
2+ import { int32ToString } from "./fable_modules/fable-library-js.5.13 .0/Util.js";
33
44export function Test() {
55 return <div>
Original file line number Diff line number Diff line change 11
2- import { defaultOf } from "./fable_modules/fable-library-js.5.0 .0/Util.js";
2+ import { defaultOf } from "./fable_modules/fable-library-js.5.13 .0/Util.js";
33import { onMount } from "solid-js";
4- import { some } from "./fable_modules/fable-library-js.5.0.0/Option.js";
54
65export function Test() {
76 let htmlCanvas = defaultOf();
87 onMount(() => {
9- console.log(some( htmlCanvas.height + htmlCanvas.width) );
8+ console.log(htmlCanvas.height + htmlCanvas.width);
109 });
1110 return <div ref={(_arg) => {
12- console.log(some( "before mounted") );
11+ console.log("before mounted");
1312 }}>
1413 <canvas width={256}
1514 height={256}
You can’t perform that action at this time.
0 commit comments