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

Replace Sinon with simple class. Full dependency update. Bump to 3.3.4. #115

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -162,7 +162,7 @@ Make sure to add tests if you add new features.

### Dependencies

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.
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.

### Pull Request

Expand Down
163 changes: 81 additions & 82 deletions deno-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion import_map.dist.json
Expand Up @@ -4,7 +4,7 @@

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

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

"sinon": "https://unpkg.com/sinon@14.0.0/pkg/sinon-esm.js",
"test_suite": "https://deno.land/x/test_suite@0.16.1/mod.ts",
Expand Down
7 changes: 3 additions & 4 deletions import_map.json
@@ -1,15 +1,14 @@
{
"imports": {
"tldts": "https://unpkg.com/tldts@5.7.91/dist/index.esm.min.js",
"tldts": "https://unpkg.com/tldts@5.7.92/dist/index.esm.min.js",
"punycode": "https://deno.land/x/punycode@v2.1.1/punycode.js",
"jose": "https://deno.land/x/jose@v4.9.2/index.ts?module",
"jose": "https://deno.land/x/jose@v4.10.0/index.ts?module",
"asn1js": "https://unpkg.com/asn1js@3.0.5?module",
"cbor-x": "https://deno.land/x/cbor@v1.4.0/index.js?module",
"std/": "https://deno.land/std@0.136.0/",
"pkijs": "https://unpkg.com/pkijs@3.0.8?module",
"@hexagon/base64": "https://deno.land/x/b64@1.1.23/dist/base64.min.mjs",
"@hexagon/base64": "https://deno.land/x/b64@1.1.25/dist/base64.min.mjs",

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