TenantAtlas/apps/platform/.pnpm-store/v10/files/12/d97abacb39a07096456e2ed00ab4bc8770a167baa380e848782629739a60aad55c26a056456398867f12ee1b0d8265bcc99129d037c085b9a42da9cfd9c816
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

12 lines
487 B
Plaintext

/*
* While in local development, make sure you've run `pnpm run build` first.
*/
import { concurrently } from './dist/src/index.js';
export * from './dist/src/index.js';
// @ts-expect-error ignore the usage of `export =` along with `export default`.
// This is seemingly fine, but the file needs to be included in the TS project, which can't be done
// due to importing from `dist`. See https://stackoverflow.com/q/42609768/2083599
export = concurrently;
export default concurrently;