@aparajita/capacitor-biometric-auth 3.0.0 → 3.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -14,7 +14,7 @@ Here is `capacitor-biometric-auth` running on the [demo app](https://github.com/
14
14
 
15
15
  | iOS | Android |
16
16
  | :----------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------- |
17
- | <video src="https://user-images.githubusercontent.com/22218/177023147-1f9abce4-2dc3-4157-8bf1-d8d9fdba3977.mp4" width="352" /> | <video src="https://user-images.githubusercontent.com/22218/177023168-d7c18a4b-a2f9-49f9-ae39-40884219c128.mp4" width="365" /> |
17
+ | <video src="https://user-images.githubusercontent.com/22218/182895212-5f7bfa39-6db1-4149-859b-85cff7012903.mp4" width="352" /> | <video src="https://user-images.githubusercontent.com/22218/182898192-d16243b8-3671-4c32-9e25-5e37feeb43d4.mp4" width="365" /> |
18
18
 
19
19
  ## Installation
20
20
 
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@aparajita/capacitor-biometric-auth",
3
- "version": "3.0.0"
3
+ "version": "3.0.1"
4
4
  }
@@ -67,7 +67,7 @@ const kPluginName = 'BiometricAuth';
67
67
 
68
68
  var info = {
69
69
  name: "@aparajita/capacitor-biometric-auth",
70
- version: "3.0.0"
70
+ version: "3.0.1"
71
71
  };
72
72
 
73
73
  const kBiometryTypeNameMap = {
package/dist/plugin.js CHANGED
@@ -1,4 +1,4 @@
1
- var capacitorDarkMode = (function (exports, core, tslib, capacitorNativeDecorator, app) {
1
+ var capacitorBiometricAuth = (function (exports, core, tslib, capacitorNativeDecorator, app) {
2
2
  'use strict';
3
3
 
4
4
  exports.BiometryType = void 0;
@@ -61,7 +61,7 @@ var capacitorDarkMode = (function (exports, core, tslib, capacitorNativeDecorato
61
61
 
62
62
  var info = {
63
63
  name: "@aparajita/capacitor-biometric-auth",
64
- version: "3.0.0"
64
+ version: "3.0.1"
65
65
  };
66
66
 
67
67
  const kBiometryTypeNameMap = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aparajita/capacitor-biometric-auth",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Provides access to the native biometric auth APIs for Capacitor apps",
5
5
  "author": "Aparajita Fishman",
6
6
  "license": "MIT",
@@ -107,14 +107,13 @@
107
107
  "build": "pnpm -s builder",
108
108
  "build.dev": "SOURCE_MAP=--sourceMap pnpm -s builder",
109
109
  "watch": "nodemon --exec 'pnpm -s build.dev'",
110
- "docgen": "docgen --api BiometricAuthPlugin --output-readme README.md && docgen-format",
110
+ "docgen": "docgen --api BiometricAuthPlugin --output-readme README.md && docgen-format && pnpm -s lint.prettier README.md",
111
111
  "open.ios": "open ios/Plugin.xcworkspace",
112
112
  "open.android": "open -b com.google.android.studio android",
113
113
  "verify.ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin -quiet && cd ..",
114
114
  "verify.android": "cd android && ./gradlew clean build test && cd ..",
115
115
  "verify": "pnpm verify.ios && pnpm verify.android",
116
116
  "release.pre": "scripts/ensure-clean.sh && pnpm -s lint",
117
- "release": "pnpm -s release.pre && commit-and-tag-version",
118
- "release.publish": "pnpm -s release && git push --follow-tags && pnpm publish"
117
+ "release": "pnpm -s release.pre && commit-and-tag-version && git push --follow-tags && pnpm publish"
119
118
  }
120
119
  }