Marcelo Shima
Marcelo Shima
No next release only. You can install from git following https://github.com/hipster-labs/generator-jhipster-entity-audit#pre-release. v4 release with the reimplementation is pending
Those constants are configuration, IMO don't make sense to have it inside a lib.
As workaround: ``` let nativeFakerInstance; // Faker >=6 doesn't exports locale by itself, it only exports a faker instance with the locale. // We need a Faker instance for each...
@SBoudrias I've tracked back https://github.com/yeoman/generator/issues/1098 to this issue. It's reported in a lot of places, node.js included (https://github.com/nodejs/node/issues/21210https://github.com/nodejs/node/issues/21210) Removing `rl.close();` fix the issue, but I don't know the consequences. Maybe...
Found https://github.com/porketta/Inquirer.js/commit/91b4216d67bed610cc941c953a622be79ed34d3d at https://github.com/nodejs/node/issues/21771
Seems this have to be reverted. @Diablohu what is your environment? Is this a regression?
@Diablohu node 8?
Created a PR reverting last commit https://github.com/SBoudrias/Inquirer.js/pull/881 and another with skip closing workaround https://github.com/SBoudrias/Inquirer.js/pull/882.
Adding `process.stdin.unpipe(this.rl.input);` before ``` this.rl.output.end(); this.rl.pause(); this.rl.close(); ``` fix the hang problem. But not the list and checkbox problem. That can related to other readline uses: https://github.com/SBoudrias/Inquirer.js/blob/0bc1b011e8441e663e788cba66b71ef40aed5252/packages/core/index.js#L42-L46 https://github.com/SBoudrias/Inquirer.js/blob/0bc1b011e8441e663e788cba66b71ef40aed5252/packages/core/hooks.js#L86-L90
I want to migrate the generator and environment to esm in the coming months. Maybe typescript.