From b93f840cae88b964eb9b4cdcfa2fe91c5b3c81e4 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 17:12:52 +0000 Subject: [PATCH] chore: apply automated fixes --- test/fixture/OUTPUT.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/test/fixture/OUTPUT.md b/test/fixture/OUTPUT.md index 38d6a18..087b28f 100644 --- a/test/fixture/OUTPUT.md +++ b/test/fixture/OUTPUT.md @@ -99,6 +99,7 @@ When your code doesn't work, don't blame yourself. It's clearly the compiler's f Why waste time solving problems when someone else has already done it for you? Stack Overflow is your best friend, your mentor, and your savior. Just make sure to upvote the answers that save your bacon. + ## `jsimport` @@ -108,19 +109,28 @@ Why waste time solving problems when someone else has already done it for you? S **ESM** (Node.js, Bun) ```js -import { foo, bar } from "pkg"; +import { + foo, + bar, +} from "pkg"; ``` **CommonJS** (Legacy Node.js) ```js -const { foo, bar } = require("pkg"); +const { + foo, + bar, +} = require("pkg"); ``` **CDN** (Deno, Bun and Browsers) ```js -import { foo, bar } from "https://esm.sh/pkg"; +import { + foo, + bar, +} from "https://esm.sh/pkg"; ```