Skip to content

Commit 2e07da2

Browse files
authored
Replace Sinon with simple class. Full dependency update. Bump to 3.3.4 (#115)
1 parent 7f18d22 commit 2e07da2

File tree

9 files changed

+537
-750
lines changed

9 files changed

+537
-750
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Make sure to add tests if you add new features.
162162

163163
### Dependencies
164164

165-
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.
165+
When adding, removing or updating dependencies, start out with npm as usual. Then update `import_map.json` to the same versions shown by `npm list`, and run `deno task update-deps` to update the Deno lock-file.
166166

167167
### Pull Request
168168

deno-lock.json

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

import_map.dist.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
"std/": "https://deno.land/std@0.136.0/",
66

7-
"@hexagon/base64": "https://deno.land/x/b64@1.1.23/dist/base64.min.mjs",
7+
"@hexagon/base64": "https://deno.land/x/b64@1.1.25/dist/base64.min.mjs",
88

99
"sinon": "https://unpkg.com/sinon@14.0.0/pkg/sinon-esm.js",
1010
"test_suite": "https://deno.land/x/test_suite@0.16.1/mod.ts",

import_map.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
22
"imports": {
3-
"tldts": "https://unpkg.com/tldts@5.7.91/dist/index.esm.min.js",
3+
"tldts": "https://unpkg.com/tldts@5.7.92/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.2/index.ts?module",
5+
"jose": "https://deno.land/x/jose@v4.10.0/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/",
99
"pkijs": "https://unpkg.com/pkijs@3.0.8?module",
10-
"@hexagon/base64": "https://deno.land/x/b64@1.1.23/dist/base64.min.mjs",
10+
"@hexagon/base64": "https://deno.land/x/b64@1.1.25/dist/base64.min.mjs",
1111

12-
"sinon": "https://unpkg.com/sinon@14.0.0/pkg/sinon-esm.js",
1312
"test_suite": "https://deno.land/x/test_suite@0.16.1/mod.ts",
1413
"chai": "./test/helpers/chai-deno-shim.js",
1514
"chai-as-promised": "./test/helpers/chai-deno-shim.js",

0 commit comments

Comments
 (0)