diff --git a/.woodpecker/e2e.yml b/.woodpecker/e2e.yml index 83b92b5..1414848 100644 --- a/.woodpecker/e2e.yml +++ b/.woodpecker/e2e.yml @@ -22,7 +22,8 @@ steps: XDG_RUNTIME_DIR: /tmp/podman-run commands: - | - set -euo pipefail + set -eu + set -o pipefail 2>/dev/null || true mkdir -p "$XDG_RUNTIME_DIR" git submodule update --init --recursive yarn --cwd onchain/lib/uni-v3-lib install --frozen-lockfile diff --git a/web-app/env.d.ts b/web-app/src/env.d.ts similarity index 81% rename from web-app/env.d.ts rename to web-app/src/env.d.ts index 1a00442..87b9490 100644 --- a/web-app/env.d.ts +++ b/web-app/src/env.d.ts @@ -6,8 +6,8 @@ declare global { interface Window { ethereum?: EIP1193Provider; } + + const __APP_VERSION__: string; } -declare const __APP_VERSION__: string; - export {}; diff --git a/web-app/tsconfig.app.json b/web-app/tsconfig.app.json index 3272419..3a76366 100644 --- a/web-app/tsconfig.app.json +++ b/web-app/tsconfig.app.json @@ -1,6 +1,6 @@ { "extends": "@vue/tsconfig/tsconfig.dom.json", - "include": ["env.d.ts", "src/**/*", "src/**/*.vue"], + "include": ["src/env.d.ts", "src/**/*", "src/**/*.vue"], "exclude": ["src/**/__tests__/*"], "compilerOptions": { "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",