Skip to content

Commit

Permalink
chore: apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Feb 20, 2024
1 parent bc9a221 commit b93f840
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions test/fixture/OUTPUT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.


<!-- /automd -->

## `jsimport`
Expand All @@ -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";
```

<!-- /automd -->
Expand Down

0 comments on commit b93f840

Please sign in to comment.