npm run fix-asyncify runs node packages/php-wasm/node/bin/rebuild-while-asyncify-functions-missing.mjs
which runs test-php-asyncify-all internally via :
const result = spawnSync(
'node',
[
'--stack-trace-limit=100',
'./node_modules/.bin/nx',
'test-php-asyncify-all',
'php-wasm-node',
],
{
env: {
...process.env,
PHP: PHP_VERSION,
FIX_DOCKERFILE: 'true',
},
}
);
There is no more test-php-asyncify-all test so it returns :
NX Cannot find configuration for task php-wasm-node:test-php-asyncify-all
Since the documentation indicates that we add missing asyncify functions, should we remove that command and file instead ?
npm run fix-asyncifyrunsnode packages/php-wasm/node/bin/rebuild-while-asyncify-functions-missing.mjswhich runs
test-php-asyncify-allinternally via :There is no more
test-php-asyncify-alltest so it returns :Since the documentation indicates that we add missing asyncify functions, should we remove that command and file instead ?