Skip to content

Commit

Permalink
Fix pipeline failure
Browse files Browse the repository at this point in the history
  • Loading branch information
lassemoldrup committed Jun 25, 2024
1 parent 8c73e7a commit 979b33f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,8 @@ jobs:
path: |
./node_modules
./docs/node_modules
./packages/ccd-js-gen/node_modules
./packages/*/node_modules
./examples/**/node_modules
key: ${{ runner.os }}-yarn

- name: Get build-debug
Expand Down
10 changes: 5 additions & 5 deletions packages/sdk/.size-limit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import type { SizeLimitConfig } from 'size-limit';

module.exports = [
{
name: "GRPC web client tree shaking",
path: "lib/esm/index.js",
limit: "54 KB",
import: "{ ConcordiumGRPCWebClient }"
}
name: 'GRPC web client tree shaking',
path: 'lib/esm/index.js',
limit: '54 KB',
import: '{ ConcordiumGRPCWebClient }',
},
] satisfies SizeLimitConfig;

0 comments on commit 979b33f

Please sign in to comment.