From e54ed7628a49ad7ae479191b637e47a4abdc32c9 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Mon, 12 Feb 2024 13:22:25 -0700 Subject: [PATCH] chore: formatting --- src/execute.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/execute.ts b/src/execute.ts index 3ec729142..4b518648a 100644 --- a/src/execute.ts +++ b/src/execute.ts @@ -13,7 +13,7 @@ import {settings} from './settings' * @example For ESM dev.js * ``` * #!/usr/bin/env -S node --loader ts-node/esm --no-warnings=ExperimentalWarning - * import { execute } from "@oclif/core" + * import { execute } from '@oclif/core' * * await execute({development: true, dir: import.meta.url}) * ``` @@ -21,7 +21,7 @@ import {settings} from './settings' * @example For ESM run.js * ``` * #!/usr/bin/env node - * import { execute } from "@oclif/core" + * import { execute } from '@oclif/core' * * await execute({dir: import.meta.url}) * ```