Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add a browser package #905

Merged
merged 10 commits into from
Sep 20, 2024
Prev Previous commit
Next Next commit
skip browser in node tests
LiranCohen committed Sep 20, 2024
commit 40d840053ce4c2fc9f7daccdc438b0de76cf1656
2 changes: 1 addition & 1 deletion .github/workflows/tests-ci.yml
Original file line number Diff line number Diff line change
@@ -64,7 +64,7 @@ jobs:
run: pnpm --recursive --stream --sequential build:tests:node

- name: Run tests for all packages
run: pnpm --recursive --stream exec c8 mocha -- --color
run: pnpm --recursive --filter '!browser' --stream exec c8 mocha -- --color
shamilovtim marked this conversation as resolved.
Show resolved Hide resolved
env:
TEST_DWN_URL: http://localhost:3000


Unchanged files with check annotations Beta

import type { Jwk } from './jose/jwk.js';

Check warning on line 1 in packages/crypto/src/utils.ts

GitHub Actions / tbdocs-reporter

extractor: typedoc:missing-docs

CryptoUtils (Variable) does not have any documentation.

Check warning on line 1 in packages/crypto/src/utils.ts

GitHub Actions / tbdocs-reporter

extractor: typedoc:missing-docs

CryptoUtils.__type.randomPin (Property) does not have any documentation.

Check warning on line 1 in packages/crypto/src/utils.ts

GitHub Actions / tbdocs-reporter

extractor: typedoc:missing-docs

CryptoUtils.__type.randomUuid (Property) does not have any documentation.

Check warning on line 1 in packages/crypto/src/utils.ts

GitHub Actions / tbdocs-reporter

extractor: typedoc:missing-docs

CryptoUtils.__type.randomBytes (Property) does not have any documentation.

Check warning on line 1 in packages/crypto/src/utils.ts

GitHub Actions / tbdocs-reporter

extractor: typedoc:missing-docs

CryptoUtils.__type.getJoseSignatureAlgorithmFromPublicKey (Property) does not have any documentation.
import { crypto } from '@noble/hashes/crypto';
import { randomBytes as nobleRandomBytes } from '@noble/hashes/utils';