Skip to content

Commit

Permalink
cleanup; adjust gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Lykhoyda committed Oct 30, 2024
1 parent bc111ad commit 878c4b3
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 49 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Install Playwright Browsers
working-directory: ./packages/e2e-tests/
run: npx playwright install --with-deps
run: yarn playwright install --with-deps

- name: Run Playwright tests
run: yarn run test:e2e
29 changes: 16 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,27 +1,30 @@
/target
# Common
target
node_modules
.DS_STORE
.idea
.parcel-cache
.vscode
dist

.pnp.*
# Package Manager
.parcel-cache
.yarn/*

!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

packages/demo-wallet/dist/*
packages/e2e-tests/dist/*
./dist/*
# Developer tools
.idea
.vscode

# Wasm package
packages/wasm/lib

# Demo Wallet package
packages/demo-wallet/dist/*
!packages/demo-wallet/dist/_headers
!packages/e2e-tests/dist/serve.json

.idea/
.vscode/
# e2e Tests package
packages/e2e-tests/dist/*
!packages/e2e-tests/dist/serve.json

dist
2 changes: 1 addition & 1 deletion packages/demo-wallet/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"skipLibCheck": true,

/* Bundler mode */
"moduleResolution": "Node",
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
Expand Down
11 changes: 0 additions & 11 deletions packages/wasm/lib/index.d.ts

This file was deleted.

2 changes: 0 additions & 2 deletions packages/wasm/lib/index.js

This file was deleted.

21 changes: 0 additions & 21 deletions packages/wasm/lib/webz-keys.d.ts

This file was deleted.

Binary file removed packages/wasm/lib/webz-keys_bg.wasm
Binary file not shown.

0 comments on commit 878c4b3

Please sign in to comment.