-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⚡ chore: Migrate to bun for script runner (#488)
## Description Use bun as script runner. Don't use it to install packages because the package manager is painful for monorepos ## 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
1 parent
570c4ed
commit b8a8440
Showing
11 changed files
with
220 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
{ | ||
"name": "@evmts/docs", | ||
"version": "0.0.1", | ||
"private": true, | ||
"contributors": [ | ||
"Will Cory <[email protected]>" | ||
], | ||
"type": "module", | ||
"scripts": { | ||
"build": "pnpm build:dist", | ||
"build:dist": "vitepress build .", | ||
"dev": "vitepress dev .", | ||
"format": "rome format . --write", | ||
"format:check": "rome format .", | ||
"preinstall": "npx only-allow pnpm", | ||
"lint": "rome check . --apply-unsafe", | ||
"lint:check": "rome check . --verbose", | ||
"package:up": "pnpm up --latest", | ||
"preview": "vitepress preview ." | ||
}, | ||
"devDependencies": { | ||
"@vue/runtime-dom": "^3.3.4", | ||
"@vue/server-renderer": "^3.3.4", | ||
"rome": "^12.1.3", | ||
"vitepress": "1.0.0-rc.9" | ||
} | ||
"name": "@evmts/docs", | ||
"version": "0.0.1", | ||
"private": true, | ||
"contributors": [ | ||
"Will Cory <[email protected]>" | ||
], | ||
"type": "module", | ||
"scripts": { | ||
"build": "bun build:dist", | ||
"build:dist": "vitepress build .", | ||
"dev": "vitepress dev .", | ||
"format": "rome format . --write", | ||
"format:check": "rome format .", | ||
"preinstall": "npx only-allow pnpm", | ||
"lint": "rome check . --apply-unsafe", | ||
"lint:check": "rome check . --verbose", | ||
"package:up": "pnpm up --latest", | ||
"preview": "vitepress preview ." | ||
}, | ||
"devDependencies": { | ||
"@vue/runtime-dom": "^3.3.4", | ||
"@vue/server-renderer": "^3.3.4", | ||
"rome": "^12.1.3", | ||
"vitepress": "1.0.0-rc.9" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
"name": "@evmts/example-bun", | ||
"version": "0.0.1", | ||
"private": true, | ||
"contributors": [ | ||
"Will Cory <[email protected]>" | ||
], | ||
"scripts": { | ||
"dev": "bun --watch readContract.ts", | ||
"test": "bun test" | ||
}, | ||
"dependencies": { | ||
"@evmts/core": "^0.11.2", | ||
"bun-types": "^0.8.1", | ||
"viem": "^1.2.12" | ||
}, | ||
"devDependencies": { | ||
"@evmts/bun-plugin": "workspace:^", | ||
"@evmts/esbuild-plugin": "workspace:^", | ||
"@evmts/ts-plugin": "workspace:^", | ||
"@openzeppelin/contracts": "^4.9.2", | ||
"@types/live-server": "^1.2.1", | ||
"@types/node": "^20.4.1", | ||
"solc": "0.8.20", | ||
"typescript": "^5.1.6", | ||
"vitest": "^0.33.0" | ||
} | ||
"name": "@evmts/example-bun", | ||
"version": "0.0.1", | ||
"private": true, | ||
"contributors": [ | ||
"Will Cory <[email protected]>" | ||
], | ||
"scripts": { | ||
"dev": "bun --watch readContract.ts", | ||
"test": "bun run test" | ||
}, | ||
"dependencies": { | ||
"@evmts/core": "^0.11.2", | ||
"bun-types": "^0.8.1", | ||
"viem": "^1.2.12" | ||
}, | ||
"devDependencies": { | ||
"@evmts/bun-plugin": "workspace:^", | ||
"@evmts/esbuild-plugin": "workspace:^", | ||
"@evmts/ts-plugin": "workspace:^", | ||
"@openzeppelin/contracts": "^4.9.2", | ||
"@types/live-server": "^1.2.1", | ||
"@types/node": "^20.4.1", | ||
"solc": "0.8.20", | ||
"typescript": "^5.1.6", | ||
"vitest": "^0.33.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
{ | ||
"name": "@evmts/example-next", | ||
"version": "0.0.2", | ||
"private": true, | ||
"contributors": [ | ||
"Will Cory <[email protected]>" | ||
], | ||
"scripts": { | ||
"build": "pnpm build:dist", | ||
"build:dist": "next build", | ||
"dev": "next dev", | ||
"lint": "next lint", | ||
"start": "next start" | ||
}, | ||
"dependencies": { | ||
"@evmts/core": "^0.11.2", | ||
"@rainbow-me/rainbowkit": "^1.0.5", | ||
"next": "^13.4.9", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"viem": "^1.2.11", | ||
"wagmi": "~1.3.8" | ||
}, | ||
"devDependencies": { | ||
"@evmts/config": "^0.10.0", | ||
"@evmts/ts-plugin": "^0.11.2", | ||
"@evmts/webpack-plugin": "^0.11.2", | ||
"@openzeppelin/contracts": "^4.9.2", | ||
"@types/node": "^20.4.1", | ||
"@types/react": "^18.2.14", | ||
"@types/react-dom": "^18.2.6", | ||
"eslint": "^8.44.0", | ||
"eslint-config-next": "^13.4.9", | ||
"solc": "0.8.20", | ||
"typescript": "^5.1.6" | ||
} | ||
"name": "@evmts/example-next", | ||
"version": "0.0.2", | ||
"private": true, | ||
"contributors": [ | ||
"Will Cory <[email protected]>" | ||
], | ||
"scripts": { | ||
"build": "bun build:dist", | ||
"build:dist": "next build", | ||
"dev": "next dev", | ||
"lint": "next lint", | ||
"start": "next start" | ||
}, | ||
"dependencies": { | ||
"@evmts/core": "^0.11.2", | ||
"@rainbow-me/rainbowkit": "^1.0.5", | ||
"next": "^13.4.9", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"viem": "^1.2.11", | ||
"wagmi": "~1.3.8" | ||
}, | ||
"devDependencies": { | ||
"@evmts/config": "^0.10.0", | ||
"@evmts/ts-plugin": "^0.11.2", | ||
"@evmts/webpack-plugin": "^0.11.2", | ||
"@openzeppelin/contracts": "^4.9.2", | ||
"@types/node": "^20.4.1", | ||
"@types/react": "^18.2.14", | ||
"@types/react-dom": "^18.2.6", | ||
"eslint": "^8.44.0", | ||
"eslint-config-next": "^13.4.9", | ||
"solc": "0.8.20", | ||
"typescript": "^5.1.6" | ||
} | ||
} |
Oops, something went wrong.
b8a8440
There was a problem hiding this comment.
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.dev
evmts-docs-git-main-evmts.vercel.app
evmts-docs-evmts.vercel.app