Skip to content

Commit

Permalink
Set Zip to true by default on config updates
Browse files Browse the repository at this point in the history
  • Loading branch information
thafryer committed Mar 13, 2024
1 parent ffb1b95 commit 9dfe9a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ async function serverChannel(channel: Channel, options: Options & { configFile?:
// No config file may be found (file is about to be created)
const { configFile: foundConfigFile, ...config } = await getConfiguration(writtenConfigFile);
const targetConfigFile = foundConfigFile || writtenConfigFile || "chromatic.config.json";
await updateChromaticConfig(targetConfigFile, { ...config, projectId });
await updateChromaticConfig(targetConfigFile, { ...config, projectId, zip: true });

projectInfoState.value = {
...projectInfoState.value,
Expand Down

0 comments on commit 9dfe9a6

Please sign in to comment.