diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-22 18:07:25 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-22 18:07:25 -0700 |
commit | e5df980070be8ca2d6391be480aac8d750a22eb2 (patch) | |
tree | 1e198f0e0896cc2af8b177d4d22eb73ec5bc5d58 | |
parent | acd96bcd843baf4fa601594543aa22f5a52537cf (diff) |
Upgrade to latest published packages
-rw-r--r-- | example/package-lock.json | 14 | ||||
-rw-r--r-- | example/package.json | 3 | ||||
-rw-r--r-- | example/public/login/index.html | 3 | ||||
-rw-r--r-- | example/public/register/index.html | 2 |
4 files changed, 10 insertions, 12 deletions
diff --git a/example/package-lock.json b/example/package-lock.json index c06d7ed..c1c5a72 100644 --- a/example/package-lock.json +++ b/example/package-lock.json @@ -26,10 +26,11 @@ "dev": true }, "@webauthntine/server": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@webauthntine/server/-/server-0.1.1.tgz", - "integrity": "sha512-yiqnFg+699XMywJC+1SK5hN0t6soYRARnDR4eyihzn1JVarIrmg5k6LZmRzxX94cxIKXFRxHmg15GdKfNXY4zA==", + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@webauthntine/server/-/server-0.1.2.tgz", + "integrity": "sha512-qk7bDOLzuN2gOB6hQpSCMYlo0JRlaK0Tl0xE2e3SiJaKXDRAoeajXI5z/fFFVBirUoy1fJ/2KgQ++PH8tPYwMQ==", "requires": { + "@webauthntine/typescript-types": "^0.1.2", "base64url": "^3.0.1", "cbor": "^5.0.2", "elliptic": "^6.5.2", @@ -38,10 +39,9 @@ } }, "@webauthntine/typescript-types": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@webauthntine/typescript-types/-/typescript-types-0.1.1.tgz", - "integrity": "sha512-v5Oh5thK3Jjf/aj8czexOKQ5JQQ0E/P9ucoQEqpzwEIKvToReExKZkhXwZ4Zdni3ZoAg3jlAzPmmUqheTYvrhg==", - "dev": true + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@webauthntine/typescript-types/-/typescript-types-0.1.2.tgz", + "integrity": "sha512-xx4PLeavvLzmL11FxfcE5c31T93gmUDw8+1hz1VCZ7EIO7i9xCxcEUmnskDXiTEIUhikqsS1QRhEBvchMSRvsA==" }, "abbrev": { "version": "1.1.1", diff --git a/example/package.json b/example/package.json index 0f2242e..84f7629 100644 --- a/example/package.json +++ b/example/package.json @@ -10,11 +10,10 @@ "author": "", "license": "ISC", "dependencies": { - "@webauthntine/server": "^0.1.1", + "@webauthntine/server": "^0.1.2", "express": "^4.17.1" }, "devDependencies": { - "@webauthntine/typescript-types": "^0.1.1", "nodemon": "^2.0.4" } } diff --git a/example/public/login/index.html b/example/public/login/index.html index d9a2e8d..094e3b4 100644 --- a/example/public/login/index.html +++ b/example/public/login/index.html @@ -3,8 +3,7 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <!-- <script src="https://unpkg.com/@webauthntine/browser@0.1.1/dist/webauthntine-browser.min.js"></script> --> - <script src="/webauthntine-browser.min.js"></script> + <script src="https://unpkg.com/@webauthntine/browser@0.1.2/dist/webauthntine-browser.min.js"></script> <link rel="stylesheet" href="../styles.css" /> <title>WebAuthntine Example Site | Login</title> </head> diff --git a/example/public/register/index.html b/example/public/register/index.html index c65e745..2ddbd73 100644 --- a/example/public/register/index.html +++ b/example/public/register/index.html @@ -3,7 +3,7 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <script src="https://unpkg.com/@webauthntine/browser@0.1.1/dist/webauthntine-browser.min.js"></script> + <script src="https://unpkg.com/@webauthntine/browser@0.1.2/dist/webauthntine-browser.min.js"></script> <link rel="stylesheet" href="../styles.css" /> <title>WebAuthntine Example Site | Register</title> </head> |