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 |
|
6 | export * from './dist/src/index.js';
|
7 | // @ts-expect-error ignore the usage of `export =` along with `export default`.
|
8 | // This is seemingly fine, but the file needs to be included in the TS project, which can't be done
|
9 | // due to importing from `dist`. See https://stackoverflow.com/q/42609768/2083599
|
10 | export = concurrently;
|
11 | export default concurrently;
|