mirror of
https://gh.wpcy.net/https://github.com/elementor/hello-theme.git
synced 2026-04-24 11:45:02 +08:00
6 lines
225 B
TypeScript
6 lines
225 B
TypeScript
export const wpCli = async ( command: string ) => {
|
|
const port = ( 1 === Number( process.env.TEST_PARALLEL_INDEX ) ) ? 8889 : 8888;
|
|
|
|
const { cli } = await import( '@elementor/wp-lite-env' );
|
|
await cli( port, command );
|
|
};
|