@jaredpalmer Turborepo question - What's the best way to keep the dependencies in the package.json of App A from being referenced by the source code of App B? We have a component library being imported in App A that we don't want directly imported by sibling packages.
@anthonysheww@jaredpalmer Say A had date-fns as a dependency in its package.json. B can now use date-fns directly even though itโs not in its own package.json because itโs a transitive dependency. import/no-extraneous-dependencies is an eslint rule Iโm considering.
@mattpocockuk I like this! It would be great to hear some opinions on where the ecosystem is at in regard to compiling to CommonJS vs ESM. @sindresorhus would be an interesting guest.