-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@passwordless-id/webauthn", | ||
"version": "2.0.4", | ||
"version": "2.0.5", | ||
"description": "A small wrapper around the webauthn protocol to make one's life easier.", | ||
|
||
"type": "module", | ||
|
@@ -14,8 +14,8 @@ | |
"scripts": { | ||
"build": "npm run build-module && npm run build-nodejs && npm run build-browser && npm run build-demos", | ||
"build-module": "tsc", | ||
"build-nodejs": "esbuild src/index.ts --platform=node --bundle --outfile=dist/cjs/webauthn.cjs", | ||
"build-browser": "esbuild src/index.ts --platform=browser --bundle --format=esm --minify --sourcemap --outfile=dist/browser/webauthn.min.js", | ||
"build-nodejs": "esbuild src/index.ts --platform=node --bundle --banner:js=/*passwordless-id/[email protected]*/ --outfile=dist/cjs/webauthn.cjs", | ||
"build-browser": "esbuild src/index.ts --platform=browser --bundle --banner:js=/*passwordless-id/[email protected]*/ --format=esm --minify --sourcemap --outfile=dist/browser/webauthn.min.js", | ||
"build-demos": "cp dist/browser/*.js docs/demos/js; cp dist/browser/*.js.map docs/demos/js", | ||
"test": "jest", | ||
"dev": "mkdocs serve" | ||
|