Skip to content

Commit

Permalink
Automated linting update and features.json sync
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 30, 2023
1 parent ca21f10 commit b8beba6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/studio/bin/studio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ cli
.option("--root <directory>", `[string] path to the root directory`)
.option("--strict", "Runs Studio in React Strict Mode")
.action((options: CliArgs) => {
const {strict, ...studioArgs} = options
const { strict, ...studioArgs } = options;
spawnSync(
"npx",
[
Expand All @@ -34,7 +34,7 @@ cli
env: {
...process.env,
YEXT_STUDIO_ARGS: JSON.stringify(studioArgs),
VITE_STUDIO_STRICT: String(strict)
VITE_STUDIO_STRICT: String(strict),
},
shell: true,
}
Expand Down

0 comments on commit b8beba6

Please sign in to comment.