JSPM

  • Created
  • Published
  • Downloads 20
  • Score
    100M100P100Q57139F
  • License MIT

The Touch ID API is used to interface with fingerprint scanning hardware.

Package Exports

  • @pos-360/touch-id
  • @pos-360/touch-id/rolledup/index.es.js
  • @pos-360/touch-id/rolledup/index.js
  • @pos-360/touch-id/rolledup/index.umd.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@pos-360/touch-id) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Troubleshooting

If you have a problem building on Windows due to a openssl != '' error, make the following edit to <node-gyp path>/gyp/pylib/gyp/input.py:

diff --git a/gyp/pylib/gyp/input.py b/gyp/pylib/gyp/input.py
index 354958b..bb982eb 100644
--- a/gyp/pylib/gyp/input.py
+++ b/gyp/pylib/gyp/input.py
@@ -1190,7 +1190,7 @@ def EvalSingleCondition(cond_expr, true_dict, false_dict, phase, variables, buil
         else:
             ast_code = compile(cond_expr_expanded, "<string>", "eval")
             cached_conditions_asts[cond_expr_expanded] = ast_code
-        env = {"__builtins__": {}, "v": StrictVersion}
+        env = {"__builtins__": {"openssl_fips": ""}, "v": StrictVersion}
         if eval(ast_code, env, variables):
             return true_dict
         return false_dict