File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1634,16 +1634,16 @@ priv struct ActionManifestSpec {
16341634 inputs : Map [String , String ]
16351635 runtime : String
16361636 steps : Array [StepSpec ]
1637- main : String
1638- pre : String?
1639- post : String?
1640- pre_if : String
1641- post_if : String
1642- image : String
1643- args : Array [String ]
1644- entrypoint : String?
1645- pre_entrypoint : String?
1646- post_entrypoint : String?
1637+ _main : String
1638+ _pre : String?
1639+ _post : String?
1640+ _pre_if : String
1641+ _post_if : String
1642+ _image : String
1643+ _args : Array [String ]
1644+ _entrypoint : String?
1645+ _pre_entrypoint : String?
1646+ _post_entrypoint : String?
16471647}
16481648
16491649///|
@@ -1768,16 +1768,16 @@ fn parse_action_manifest_yaml(text : String) -> ActionManifestParseResult {
17681768 inputs ,
17691769 runtime : action_using ,
17701770 steps ,
1771- main ,
1772- pre ,
1773- post ,
1774- pre_if ,
1775- post_if ,
1776- image ,
1777- args ,
1778- entrypoint ,
1779- pre_entrypoint ,
1780- post_entrypoint ,
1771+ _main : main ,
1772+ _pre : pre ,
1773+ _post : post ,
1774+ _pre_if : pre_if ,
1775+ _post_if : post_if ,
1776+ _image : image ,
1777+ _args : args ,
1778+ _entrypoint : entrypoint ,
1779+ _pre_entrypoint : pre_entrypoint ,
1780+ _post_entrypoint : post_entrypoint ,
17811781 }),
17821782 errors ,
17831783 }
Original file line number Diff line number Diff line change 66 "mizchi/sol" @sol,
77 "bit-vcs/bithub/core" @core,
88}
9+
10+ options(
11+ "supported-targets": "js",
12+ )
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import {
2323} for "test"
2424
2525options(
26+ "supported-targets": "js",
2627 is_main: true,
2728 link: { "js": { "format": "cjs" } },
2829 targets: {
Original file line number Diff line number Diff line change 66}
77
88options(
9+ "supported-targets": "js",
910 is_main: true,
1011 link: { "js": { "format": "cjs" } },
1112 targets: { "main.mbt": [ "js" ] },
Original file line number Diff line number Diff line change 66}
77
88options(
9+ "supported-targets": "js",
910 is_main: true,
1011 link: { "js": { "format": "esm", "exports": ["fetch"] } },
1112)
Original file line number Diff line number Diff line change 77}
88
99options(
10+ "supported-targets": "js",
1011 is_main: true,
1112 link: { "js": { "format": "cjs" } },
1213 targets: {
Original file line number Diff line number Diff line change 66}
77
88options(
9+ "supported-targets": "js",
910 is_main: true,
1011 link: { "js": { "format": "cjs" } },
1112 targets: {
You can’t perform that action at this time.
0 commit comments