Skip to content

Commit c30a93c

Browse files
authored
Merge branch 'webauthn-open-source:master' into master
2 parents f173d03 + a1bd544 commit c30a93c

File tree

7 files changed

+815
-438
lines changed

7 files changed

+815
-438
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,8 @@ See [package.json](/package.json) for available npm scripts, and [deno.jsonc](/d
158158

159159
Make sure to add tests if you add new features.
160160

161+
**Important:** Do not stage/commit `dist/main.js` and `dist/main.cjs`. These are generated and committed automatically by the CI-pipeline.
162+
161163
### Dependencies
162164

163165
When adding, removing or updating dependencies, start out with npm as usual. Then update `import_map.json` to points to the same versions shown by `npm list`, and run `deno task update-deps` to update the Deno lock-file.

deno-lock.json

Lines changed: 88 additions & 88 deletions
Large diffs are not rendered by default.

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"test:dist": "deno test --lock=deno-lock.json --importmap=import_map.dist.json --ignore=test/dist test",
2525

2626
/* Run after changing dependencies */
27-
"update-deps": "deno cache --lock=deno-lock.json --lock-write --importmap=import_map.json test/main.test.js lib/main.js",
27+
"update-deps": "deno cache -r --lock=deno-lock.json --lock-write --importmap=import_map.json test/main.test.js lib/main.js",
2828

2929
"build": "deno task test && (mkdir dist; deno bundle --lock=deno-lock.json lib/main.js dist/main.js) && deno task test:dist"
3030
}

dist/main.js

Lines changed: 187 additions & 207 deletions
Large diffs are not rendered by default.

import_map.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"imports": {
3-
"tldts": "https://unpkg.com/tldts@5.7.90/dist/index.esm.min.js",
3+
"tldts": "https://unpkg.com/tldts@5.7.91/dist/index.esm.min.js",
44
"punycode": "https://deno.land/x/punycode@v2.1.1/punycode.js",
5-
"jose": "https://deno.land/x/jose@v4.9.1/index.ts?module",
5+
"jose": "https://deno.land/x/jose@v4.9.2/index.ts?module",
66
"asn1js": "https://unpkg.com/asn1js@3.0.5?module",
77
"cbor-x": "https://deno.land/x/cbor@v1.4.0/index.js?module",
88
"std/": "https://deno.land/std@0.136.0/",
9-
"pkijs": "https://unpkg.com/pkijs@3.0.7?module",
9+
"pkijs": "https://unpkg.com/pkijs@3.0.8?module",
1010
"@hexagon/base64": "https://deno.land/x/b64@1.1.23/dist/base64.min.mjs",
1111

1212
"sinon": "https://unpkg.com/sinon@14.0.0/pkg/sinon-esm.js",

0 commit comments

Comments
 (0)