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

Error when deployed (possibly due to minification) #158

Closed
dancherb opened this issue Mar 3, 2023 · 1 comment
Closed

Error when deployed (possibly due to minification) #158

dancherb opened this issue Mar 3, 2023 · 1 comment
Assignees

Comments

@dancherb
Copy link

dancherb commented Mar 3, 2023

Issue Description

When the project is built and deployed on Heroku, the following error appears. This error does not appear when using the standard face-api.js npm package:
Uncaught SyntaxError: Invalid left-hand side expression in postfix operation

This references the following minified code:
async nextState(e){await e;let t=await wF(this.iterators,function(e){return e instanceof wJ?{value:e.next().then(e=>(0++,e.done&&0++,e.value)),recurse:!1}:{value:null,recurse:!0}});

It seems that "0++" is causing the issue here. This appears to be minified from the following function in @tensorflow\tfjs\node_modules\@tensorflow\tfjs-data\src\iterators\lazy_iterator.ts. It appears that the variables numIterators and iteratorsDone are reduced to simply 0, thus giving the code 0++.

let numIterators = 0;
 let iteratorsDone = 0;
 
 function getNext(container: IteratorContainer): DeepMapAsyncResult {
   if (container instanceof LazyIterator) {
     const result = container.next();
     return {
       value: result.then(x => {
         numIterators++;
         if (x.done) {
           iteratorsDone++;
         }
         return x.value;
       }),
       recurse: false
     };
   } else {
     return {value: null, recurse: true};
   }
 }

Environment

  • Module version? @vladmandic/face-api": "^1.7.9", "@tensorflow/tfjs-node": "4.2.0",
  • Built-in demo or custom code? Custom code based on built-in demo.
  • Type of module used (e.g. js, esm, esm-nobundle)? ESM.
  • Browser or NodeJS and version (e.g. NodeJS 14.15 or Chrome 89)? Node 16.x, occurs on all Chromium browsers.
  • OS and Hardware platform (e.g. Windows 10, Ubuntu Linux on x64, Android 10)? Hosted with next.js and node.js on Heroku stack 22 (Ubuntu 22.04).
  • Packager (if any) (e.g, webpack, rollup, parcel, esbuild, etc.)? Next.js 13.1.6
@vladmandic
Copy link
Owner

closing as duplicate of #157

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants