This project shows odd problem with rollup not being able to process imports properly.
- run
npm install - run
npm run rollup - open
examples/drag/app.module.js
You will see that module file is missing import for Store
- Now navigate to
examples/drag/lib/TaskStore.jsand move last import to the first - run
npm run rollupagain - open
examples/drag/app.module.js
You will see import is now included
If you navigate to examples/drag/index.html in browser, you will see that store class was actually imported and works - text is rendered to DOM.