After using a Yo Angular-Fullstack generator (https://github.com/DaftMonk/generator-angular-fullstack) to start an app, I attempted to install Toastr from bower with the command:
bower install angular-toastr
Now, I need to add the toastr css and js files which can be found in the
bower_components/angular-toastr/dist
How can I include them in my current project so that they are integrated into the dist folder when building the application using grunt?
The folder structure is as follows -
├── client
│ ├── app - All of our app specific components go in here
│ ├── assets - Custom assets: fonts, images, etc…
│ ├── components - Our reusable components, not specific to our app
│
├── e2e - Protractor end to end tests
│
└── server
├── api - Server API for the app
├── auth - Authentication handling with different strategies
├── components - Reusable or app-wide components
├── config - Main app configuration
│ └── local.env.js - Keep environment variables out of source control
│ └── environment - Node environment specific configurations
└── views - Server-rendered views