From 26767d093e1d2c97f0d90b6672452d69d054741f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Jakub=20Nani=C5=A1ta?= Date: Thu, 25 Jan 2024 13:25:32 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Tiny=20chores=20(#247)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintignore | 3 ++- DEVELOPMENT.md | 5 ++--- package.json | 1 - turbo.json | 1 + 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.eslintignore b/.eslintignore index a2b84b2e5..7edbcc827 100644 --- a/.eslintignore +++ b/.eslintignore @@ -4,5 +4,6 @@ node_modules *.md *.sol *.toml +*.yaml +Dockerfile Makefile -pnpm-lock.yaml diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 4fb0967f2..6221937b1 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -35,8 +35,7 @@ git clone git@github.com:LayerZero-Labs/devtools.git # 2. Install submodules -git submodules init -git submodules update +git submodule update --init ``` ### Setting up the environment @@ -168,7 +167,7 @@ pnpm start Once the networks are running, you can go to the `ua-devtools-evm-hardhat-test` package: ```bash -cd packages/ua-devtools-hardhat-test +cd tests/ua-devtools-evm-hardhat-test ``` Setup the default `EndpointV2` and `DefaultOApp`: diff --git a/package.json b/package.json index 816b77bc6..58e3aa737 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,6 @@ "release:version": "$npm_execpath changeset version && $npm_execpath install --lockfile-only --prefer-offline --ignore-scripts", "start": "docker compose -f docker-compose.yaml -f docker-compose.local.yaml up network-britney network-vengaboys network-tango --wait $DOCKER_COMPOSE_ARGS", "stop": "docker compose down", - "pretest": "$npm_execpath build", "test": "$npm_execpath turbo run test $DOCKER_COMPOSE_RUN_TESTS_TURBO_ARGS", "test:ci": "docker compose run --build --rm $DOCKER_COMPOSE_ARGS tests", "test:local": ". bin/env && $npm_execpath start && $npm_execpath test", diff --git a/turbo.json b/turbo.json index d9f89f08d..ca68f19f6 100644 --- a/turbo.json +++ b/turbo.json @@ -29,6 +29,7 @@ }, "test": { "cache": false, + "dependsOn": ["compile", "^build"], "outputs": [] } },