From 118ff988f1d94bfead7dd76cb0955373bc935ccb Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 22:40:49 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- tasks/transform_conformance/update_fixtures.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/transform_conformance/update_fixtures.js b/tasks/transform_conformance/update_fixtures.js index 2ba0712efc9f43..2f15bfd63c1882 100644 --- a/tasks/transform_conformance/update_fixtures.js +++ b/tasks/transform_conformance/update_fixtures.js @@ -13,9 +13,9 @@ // (or maybe don't - what does this option mean?) import { transformFileAsync } from '@babel/core'; -import { readdir, readFile, rename, writeFile, copyFile } from 'fs/promises'; -import { join as pathJoin, extname } from 'path'; import assert from 'assert'; +import { copyFile, readdir, readFile, rename, writeFile } from 'fs/promises'; +import { extname, join as pathJoin } from 'path'; const PACKAGES = ['babel-plugin-transform-class-properties']; const FILTER_OUT_PRESETS = ['env']; @@ -48,8 +48,8 @@ async function updateDir(dirPath, options, hasChangedOptions) { const dirFiles = []; - const filenames = {options: null, input: null, output: null, exec: null}; - const overrides = {options: false, input: false, output: false, exec: false}; + const filenames = { options: null, input: null, output: null, exec: null }; + const overrides = { options: false, input: false, output: false, exec: false }; // Find files in dir for (const file of files) {