Closed netstart closed 8 years ago
How is the best practice to share code between projects?
Below dashboard example should be use components of the eye project, and nose project.
In this case, I run three commands to see all aplications , but, I need copy nose source and eye source to dashboard project to share componets
npm run serve.dev -- --client eye npm run serve.dev -- --client nose npm run serve.dev -- --client dashboard src ├── eye │ ├── app │ │ ├── components │ │ │ ├── eye.component.html │ │ │ ├── eye.component.ts │ │ │ ├── eye.component.css ├── nose │ ├── app │ │ ├── components │ │ │ ├── nose.component.html │ │ │ ├── nose.component.ts │ │ │ ├── nose.component.css ├── dashboard │ ├── app │ │ ├── components │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.ts │ │ │ ├── dashboard.component.css
How is the best practice to share code between projects?
Below dashboard example should be use components of the eye project, and nose project.
In this case, I run three commands to see all aplications , but, I need copy nose source and eye source to dashboard project to share componets