Skip to content

Commit

Permalink
chore(docs): updated instructions for angular-seed (#4252)
Browse files Browse the repository at this point in the history
* Update NPM dependencies

Bootstrap v4 removed bootstrap-theme

* Sync with upstream: s/let/const/
  • Loading branch information
Randy Wijnants authored and valorkin committed Apr 24, 2018
1 parent 523ea04 commit 977519d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/getting-started/angular-seed.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ this.NPM_DEPENDENCIES = [
// {src: 'lodash/lodash.min.js', inject: 'libs'},
{ src: 'bootstrap/dist/js/bootstrap.min.js', inject: 'libs' },
{ src: 'bootstrap/dist/css/bootstrap.min.css', inject: true }, // inject into css section
{ src: 'bootstrap/dist/css/bootstrap-theme.min.css', inject: true }, // inject into css section
{ src: 'bootstrap/dist/css/bootstrap-theme.min.css.map', inject: true }, // inject into css section
// Uncomment when using Bootstrap v3. Bootstrap v4 removed bootstrap-theme
// { src: 'bootstrap/dist/css/bootstrap-theme.min.css', inject: true }, // inject into css section
// { src: 'bootstrap/dist/css/bootstrap-theme.min.css.map', inject: true }, // inject into css section
];

// *towards the bottom, replace extended packages with this:

let additionalPackages: ExtendPackages[] = [
const additionalPackages: ExtendPackages[] = [
// required for dev build
{
name: 'ngx-bootstrap',
Expand Down

0 comments on commit 977519d

Please sign in to comment.