-
-
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.
- Loading branch information
Will Cory
authored and
Will Cory
committed
Sep 10, 2023
1 parent
9b6300f
commit 5f861b8
Showing
14 changed files
with
337 additions
and
149 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
"@evmts/vite-plugin": patch | ||
"@evmts/webpack-plugin": patch | ||
"@evmts/bundler": patch | ||
--- | ||
|
||
Added e2e playwright tests to test the Vite and NEXT.js example apps running with EVMts | ||
Added e2e playwright tests to test the Vite example app |
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,4 +1,6 @@ | ||
node_modules | ||
test-results/ | ||
playwright-report/ | ||
.DS_Store | ||
dist | ||
dist-ssr | ||
|
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
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 |
---|---|---|
|
@@ -2,18 +2,16 @@ | |
"name": "@evmts/example-vite", | ||
"version": "0.0.1", | ||
"private": true, | ||
"contributors": [ | ||
"Will Cory <[email protected]>" | ||
], | ||
"contributors": ["Will Cory <[email protected]>"], | ||
"scripts": { | ||
"anvil": "source .env && anvil --fork-url https://eth-mainnet.g.alchemy.com/v2/$VITE_ALCHEMY_API_KEY", | ||
"build": "pnpm build:contracts && pnpm build:dist", | ||
"build:contracts": "forge build", | ||
"build:dist": "vite build", | ||
"clean": "rm -rf node_modules && rm -rf artifacts && rm -rf dist && rm -rf cache", | ||
"deploy-contracts": "source .env && forge script script/Deploy.s.sol:Deploy --broadcast --verify -vvvv", | ||
"deploy-contracts:anvil": "pnpm deploy-contracts --fork-url http://localhost:8545", | ||
"dev": "anvil --fork-url $ANVIL_RPC_URL_1 & vite", | ||
"dev": "anvil --port 8546 --fork-block-number 14457512 --fork-url $ANVIL_RPC_URL_1 & vite", | ||
"test-server": "vite", | ||
"format": "rome format . --write", | ||
"format:check": "rome format .", | ||
"generate": "evmts generate", | ||
|
@@ -24,7 +22,6 @@ | |
"preview": "vite preview", | ||
"rome": "^12.1.2", | ||
"serve": "serve -s -l tcp://0.0.0.0:5173 dist", | ||
"serve:test": "source .env & anvil --fork-url https://eth-mainnet.g.alchemy.com/v2/$VITE_ALCHEMY_API_KEY & vite", | ||
"test": "vitest" | ||
}, | ||
"dependencies": { | ||
|
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
Oops, something went wrong.