mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 22:47:17 +00:00
Why? Few reasons: - tsup treats dependencies as external code and does not bundle them - without dependencies turborepo will always serve stale code when some of dependencies changed Moving internal dependencies to devDependencies makes tsup treat them as non-external and turborepo still keep tracks of relations
5 lines
103 B
JavaScript
5 lines
103 B
JavaScript
module.exports = {
|
|
rules: {
|
|
'enforce-deps-in-dev': require('./enforce-deps-in-dev.cjs'),
|
|
},
|
|
};
|