Skip to content

Commit affd77d

Browse files
committed
Make data a method, unsafe code
1 parent dd0254a commit affd77d

File tree

4 files changed

+251
-209
lines changed

4 files changed

+251
-209
lines changed

Herebyfile.mjs

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const { values: options } = parseArgs({
2727
race: { type: "boolean" },
2828
fix: { type: "boolean" },
2929
noembed: { type: "boolean" },
30+
unsafe: { type: "boolean" },
3031
debug: { type: "boolean" },
3132
concurrentTestPrograms: { type: "boolean" },
3233
},
@@ -40,6 +41,7 @@ const { values: options } = parseArgs({
4041

4142
const defaultGoBuildTags = [
4243
...(options.noembed ? ["noembed"] : []),
44+
...(options.unsafe ? ["tsunsafe"] : []),
4345
];
4446

4547
/**

0 commit comments

Comments
 (0)