index.mjs 280 B

1234567891011
  1. /*
  2. * While in local development, make sure you've run `pnpm run build` first.
  3. */
  4. import concurrently from './dist/src/index.js';
  5. // NOTE: the star reexport doesn't work in Node <12.20, <14.13 and <15.
  6. export * from './dist/src/index.js';
  7. export default concurrently.default;