I am using Shake with an npm based project, but am baffled by how to handle the node_modules
folder. The flow should be simple from what I can tell:
- Any change to
package.json
would causenode_modules
to be re-populated. - All the changes to
node_modules
and/ormain.ts
would cause a typescript related script to fire. In this case it would only run the once for the entire collection of changes.
How do I encode those dependencies?