Skip to content

Commit

Permalink
♻️ chore(bun-plugin): Migrate bun plugin to NodeNext (#565)
Browse files Browse the repository at this point in the history
## Description

Migrate Bun plugin to NodeNext

## Testing

Explain the quality checks that have been done on the code changes

## Additional Information

- [ ] I read the [contributing docs](../docs/contributing.md) (if this
is your first contribution)

Your ENS/address:

---------

Co-authored-by: Will Cory <[email protected]>
  • Loading branch information
roninjin10 and Will Cory authored Oct 15, 2023
1 parent 125e77d commit 738e2fe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/thin-ligers-complain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@evmts/bun-plugin": patch
---

Updated @evmts/bun-plugin to NodeNext this will improve compatibility
4 changes: 2 additions & 2 deletions bundlers/bun/src/bunFileAccessObject.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { file } from './bunFile'
import { bunFileAccesObject } from './bunFileAccessObject'
import { file } from './bunFile.js'
import { bunFileAccesObject } from './bunFileAccessObject.js'
import * as fsPromises from 'fs/promises'
import { join } from 'path'
import { type Mock, beforeEach, describe, expect, it } from 'vitest'
Expand Down
4 changes: 3 additions & 1 deletion bundlers/bun/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"composite": true,
"outDir": "types",
"skipLibCheck": true,
"types": ["bun-types"]
"types": ["bun-types"],
"moduleResolution": "NodeNext",
"module": "NodeNext"
},
"include": [
"src",
Expand Down

1 comment on commit 738e2fe

@vercel
Copy link

@vercel vercel bot commented on 738e2fe Oct 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

evmts-docs – ./

evmts-docs-evmts.vercel.app
evmts-docs-git-main-evmts.vercel.app
evmts.dev

Please sign in to comment.