Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

# Just copy these as is in order lib to be propely build
GQL_BASIC_AUTH_USERNAME=""
GQL_BASIC_AUTH_PASSWORD=""

# Must be set for tests using protected api calls
TEST_AUTH_TOKEN=""
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ node_modules
vite.config.js.timestamp-*
vite.config.ts.timestamp-*

test-results

*storybook.log

/mkcert
Expand Down
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:unit": "vitest",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"storybook": "storybook dev -p 4000 --ci --disable-telemetry",
"build-storybook": "storybook build",
"lib:release": "node scripts/release.js --run",
Expand Down Expand Up @@ -109,6 +110,8 @@
"@sveltejs/kit": "^2.20.7",
"@sveltejs/package": "^2.3.5",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/svelte": "^5.2.8",
"@types/cloudflare-turnstile": "^0.2.2",
"@types/eslint": "^9.6.1",
"@types/gtag.js": "^0.0.20",
Expand All @@ -130,6 +133,8 @@
"highlight.js": "^11.11.1",
"husky": "^9.0.11",
"indicatorts": "^2.2.2",
"jsdom": "^26.1.0",
"jsdom-testing-mocks": "^1.15.2",
"lint-staged": "^15.2.2",
"lottie-web": "^5.13.0",
"magic-string": "^0.30.10",
Expand Down Expand Up @@ -159,7 +164,7 @@
"viem": "~2.21.38",
"vite": "^6.2.5",
"vite-plugin-mkcert": "^1.17.5",
"vitest": "^1.2.0",
"vitest": "^3.2.4",
"wagmi": "^2.12.25"
},
"svelte": "./dist/index.js",
Expand Down
Loading