Deployment Problem with Accounts

I have a app written in Angular2-Meteor.
Running fine in development…
I do a build: meteor build strn --architecture os.linux.x86_64
Deploy to a server.
All is well, unpacks and starts up. Absolutely no errors reported in logs.
Does say…

meteor npm install --save bcrypt 

In order to use the native implementation instead, run 
approximately three times slower than the native implementation. 
While this implementation will work correctly, it is known to be 
Note: you are using a pure-JavaScript implementation of bcrypt.

Does not seem fatal.

My first order of business is to create a user with:

console.log("Called: addAccount()");

        Accounts.createUser({email: this.email, password : this.passw1}, (err)=>{
            console.log("Accounts.createUser Results: " + err);
            if (err) {

The log prints out…but the “Accounts.createUser” never returns… the log call inside never returns.
No server or browser errors…

Any suggestions for troubleshooting this?

Thanks,
Greg

Finally figured it out.

I just…
meteor npm remove --save bcrypt

Then I assume Accounts used it default version.