We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98afe13 commit e52dc97Copy full SHA for e52dc97
ab-testing/scripts/build/index.ts
@@ -37,6 +37,10 @@ const mvtDictArray = Array.from(
37
);
38
39
console.log(`Writing ${mvtDictArray.length} MVT groups to ${flags['mvts']}`);
40
+
41
+// Ensure the dist folder exists
42
+await Deno.mkdir('dist', { recursive: true });
43
44
// write the abTestDictArray to a file
45
await Deno.writeTextFile(
46
flags['ab-tests'],
0 commit comments