Giter VIP home page Giter VIP logo

angular-cli-sb2-bs4's Introduction

SB Admin rewritten in Angular 2 and Bootstrap 4 using Angular-cli

Test Result
Greenkeeper Greenkeeper badge
Travis CI Build Status
David Dependency Check David badge
Circle CI CircleCI develop
Code Coverage codecov
Framework for a simple dashboard app using angular 5+ and Bootstrap 4

This project is a port of the famous Free Admin Bootstrap Theme SB Admin v2.0 to Angular Theme and relies heavily on the start-angular port of SB Admin 2 for it's look and feel.

This project was generated with Angular CLI version 1.0.0.

SB Admin Bootstrap 4 provides the following features:

  • Project uses Angular 5.
  • Project built using Angular-cli.
  • Ready to go, statically typed build system using webpack for working with TypeScript.
  • Production and development builds.
  • Ahead-of-Time compilation support.
  • Sample unit tests with Jasmine and Karma including code coverage via istanbul.
  • End-to-end tests with Protractor (not yet implemented).
  • Following the best practices for your application’s structure as determined by Angular-cli
  • Has autoprefixer and css-lint support.

Prerequisites

Both Angular-cli and the generated project have dependencies that require Node 4 or higher, together with NPM 3 or higher.

Angular-cli requires global installation by:

$ npm install -g @angular/cli

In order to start the seed use:

$ git clone https://github.com/DouglasWebster/Angular_cli-SB2-BS4
$ cd Angular_cli-SB2-BS4
# install the project dependencies
$ npm install

Using angular-cli

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Running unit tests

Run ng test to execute the unit tests via Karma.

Further help

The above 2 commands allow the user to get a feel of the project but for furter development the user should be familiar with the full range of angular-cli commands.
To get more help on the angular-cli use ng help or check out the Angular-CLI README.

Directory Structure

├── e2e
│   ├── app.e2e-spec.ts             <-- simple e2e test
│   ├── app.po.ts
│   └── tsconfig.e2e.json
├── src                       <- source code of the application
│    ├── app
│    │   ├── dashboard              <-- main page for the application
│    │   │   ├── bs-components         <-- demonstration of NGX-Bootstrap components
│    │   │   │   ├── accordion-sample
│    │   │   │   │   ├── accordion-sample.component.scss
│    │   │   │   │   ├──        --- || ---
│    │   │   │   │   └── accordion-sample.component.ts
│    │   │   │   ├──            --- || ---              <-- various NGX-Bootstrap components    
│    │   │   │   ├── typeahead-sample
│    │   │   │   │   ├── typeahead-sample.component.scss
│    │   │   │   │   ├──        --- || ---
│    │   │   │   │   └── typeahead-sample.component.ts
│    │   │   │   ├── bs-components.component.scss
│    │   │   │   ├── bs-components.component.html
│    │   │   │   ├── bs-components.component.spec.ts
│    │   │   │   ├── bs-components.component.ts
│    │   │   │   └── bs-components.module.ts
│    │   │   ├── bs-elements           <-- demonstration of Bootstrap elements
│    │   │   │   ├── bs-elements.component.scss
│    │   │   │   ├── bs-elements.component.html
│    │   │   │   ├── bs-elements.component.spec.ts
│    │   │   │   ├── bs-elements.component.ts
│    │   │   │   └── bs-elements.module.ts
│    │   │   ├── charting              <-- demonstration of ng-charts
│    │   │   │   ├── charting.component.scss
│    │   │   │   ├── charting.component.html
│    │   │   │   ├── charting.component.spec.ts
│    │   │   │   ├── charting.component.ts
│    │   │   │   └── charting.module.ts
│    │   │   ├── forms                 <-- demonstration of forms
│    │   │   │   ├── forms.component.scss
│    │   │   │   ├── forms.component.html
│    │   │   │   ├── forms.component.spec.ts
│    │   │   │   ├── forms.component.ts
│    │   │   │   └── forms.module.ts
│    │   │   ├── grid                  <-- demonstration of grid layouts
│    │   │   │   ├── grid.component.scss
│    │   │   │   ├── grid.component.html
│    │   │   │   ├── grid.component.spec.ts
│    │   │   │   ├── grid.component.ts
│    │   │   │   └── grid.module.ts
│    │   │   ├── home                  <-- home component SB layout
│    │   │   │   ├── chat.html            <-- additional chat boilerplate
│    │   │   │   ├── home.component.scss
│    │   │   │   ├── home.component.html
│    │   │   │   ├── home.component.spec.ts
│    │   │   │   ├── home.component.ts
│    │   │   │   ├── home.module.ts
│    │   │   │   ├── notification.html    <-- additional notification boilerplate
│    │   │   │   ├── timeline.html        <-- additional timeline boilerplate
│    │   │   │   └── timeline.scss
│    │   │   ├── tables                   <-- demonstration of tables
│    │   │   │   ├── tables.component.scss
│    │   │   │   ├── tables.component.html
│    │   │   │   ├── tables.component.spec.ts
│    │   │   │   ├── tables.component.ts
│    │   │   │   └── tables.module.ts
│    │   │   ├── dashboard.component.scss
│    │   │   ├── dashboard.component.html
│    │   │   ├── dashboard.component.spec.ts
│    │   │   ├── dashboard.component.ts
│    │   │   ├── dashboard.module.ts
│    │   │   ├── dashboard-routing.module.ts
│    │   │   └── index.ts
│    │   ├── login                     <-- boilerplate login page
│    │   │   ├── login.component.scss
│    │   │   ├── login.component.html
│    │   │   ├── login.component.spec.ts
│    │   │   ├── login.component.ts
│    │   │   ├── login.module.ts
│    │   │   └── login-routing.module.ts
│    │   ├── shared                 <-- common components
│    │   │   ├── name-list             <-- service supplying names
│    │   │   │   ├── name-list.service.spec.ts
│    │   │   │   └── name-list.service.ts
│    │   │   ├── sidebar               <-- page sidebar component
│    │   │   │   ├── sidebar.component.scss
│    │   │   │   ├── sidebar.component.html
│    │   │   │   ├── sidebar.component.spec.ts
│    │   │   │   ├── sidebar.component.ts
│    │   │   │   └── sidebar.module.ts
│    │   │   └── topnav                <-- page topnav component
│    │   │       ├── topnav.component.scss
│    │   │       ├── topnav.component.html
│    │   │       ├── topnav.component.spec.ts
│    │   │       ├── topnav.component.ts
│    │   │       └── topnav.module.ts
│    │   ├── signup                    <-- boilerplate signup page
│    │   │   ├── signup.component.scss
│    │   │   ├── signup.component.html
│    │   │   ├── signup.component.spec.ts
│    │   │   ├── signup.component.ts
│    │   │   ├── signup.module.ts
│    │   │   └── signup-routing.module.ts
│    │   ├── styles                    <-- local styles
│    │   │   └── sass 
│    │   │       └── app.scss 
│    │   ├── testing                   <-- items required to enable testing
│    │   │   └── router-stubs.ts
│    │   ├── app.component.html
│    │   ├── app.component.spec.ts
│    │   ├── app.component.ts
│    │   ├── app.module.ts
│    │   ├── app-routing.module.ts
│    │   └── index.ts                  <-- barrel component
│    ├── assets                     <-- app assets for copying over
│    │   ├── img
│    │   │   ├── SB-admin.png
│    │   │   ├── slider0.jgp
│    │   │   ├── slider1.jgp
│    │   │   ├── slider2.jgp
│    │   │   ├── slider3.jgp
│    │   │   └── smile.png
│    │   ├── .gitkeep
│    │   └── data.json
│    ├── environments               <-- build environments for angular-cli
│    │   ├── environment.prod.ts
│    │   └── environment.ts
│    ├── .htaccess                  <-- used for apache.http testing
│    ├── favicon.ico
│    ├── index.html                 <-- app startup page
│    ├── main.ts                    <-- app entry point
│    ├── polyfills.ts
│    ├── stylels.scss               <-- global styles
│    ├── test.ts                    <-- karma test environment
│    ├── tsconfig.app.json          <-- typescript settings for build
│    └── tscongig.spec.ts           <-- typescript settings for testing
├── .angular-cli.json          <-- configuration for the angular-cli applicaton
├── .editorconfig              <-- configuration for the ide editor
├── .gitignore                 <-- files not under git versioning 
├── .travis.yml                <-- Travis test script
├── karma.conf.js              <-- configuration for the test runner
├── licence.txt
├── package.json               <-- dependencies of the project
├── protractor.conf.js         <-- e2e tests configuration
├── README.md
├── tsconfig.json              <-- root typescript configuration
├── tslint.json                <-- tslint configuration
└── vendor.ts                  <-- hack to get moments into webpack

Notes

  • Look and Feel The NGX-bootstrap package is used to implement most of the bootstrap functionality and much of the look and feel is based on NGX Demo. ngx-bootstrap is designed to work with both Bootstrap 3 and Bootstrap 4 whilst this project is developed using Bootstrap 4 only. As Bootstrap 4 is dropping support for glyphicons I chose to use font-awesome throughout the project so you may notice differences between icons on the ngx-bootstrap demo pages and this projects demo pages.

  • Charting

    The original StartBootstrap SB2 uses jQuery charting plugins, Flot Charts and Morris.js and the StartAngular version uses Highcharts. This implementation uses ngx-charts which is based on the chart.js.

    The primary reason for this is that chart.js and ngx-charts are free open source whilst Highcharts requires a licence for commercial use. Being unsure how possible downstream use of this project would impact licensing issues I decided to change the charting package used. A secondary consideration was that ngx-charts is an angular 2 module which should make implementation easier. However, ngx-charts is still in development so breaking changes may occur if the package is updated.

  • Navigation

    .htaccess is included in the root directory of the app for inclusion in the build. This is to allow navigation without using HashLocationStrategy in the my local Apache http test server.

    I haven't tried navigation in anything other than the default angular-cli server implementation and the Apache http server so I cannot guarantee navigation will work without a similar workaround. It took me quite a while to find out what the problem was with navigating in Apache until I came across this solution Angular2 routing / deep linking not working with Apache 404 on stackoverflow - hopefully the link will help with others of you who, like me, aren't familiar enough with Apache to set up a local test server correctly to allow html5 navigation.

    (I realise that this has generated a big discussion on the angular site regarding front-end or back-end configuration responsibility but as angular seems to favour html5 routing this is the one I've gone with. The framework is still relatively shallow as far as routing is concerned so it shouldn't be too onerous to change it to # routing if you so require).

  • Style Sheets

    The style sheets have all been included by reference in the angular-cli.json styles section. I did consider extracting the stylesheets and including them in one common styles folder and referencing them in the root styles.scss file. However, I seem to have problems loading style sheets via styles.scss so use the current method.

    For the bootstrap and font-awesome css files the current method seems to me to be the correct one as any updates in the future are automatically catered for. The inclusion of app.scss in this was does seem wrong to me though and this may change in the future if I can discover where my mistake is.

  • Unit Testing

    There are full full set test suites. Some are bare bone implementations only and do little else than assert that a component has been created. Others do a rather better job of component and service testing and implent the use of such things as mocking services and use mock backend features.


Hacks

Thankfully there aren't too many of these considering the very fluid nature of the angular scene at the moment. The following are ones I have had to use to get the application running.

  • bs-component

    This component has a large (probably too large) number of children that demonstrates most of the ngx-bootstrap functionality. This component initially had all the different modules on one page and this did highlight one problem with the inclusion of the changeDetectionStrategy.OnPush required by the tabs component.

    If the changeDetectionStrategy.OnPush is included with the Pager module then the pager display is on click behind the actual number of clicks. This is only a problem when the Tabs module and the Pagination module are required on the same page.

Acknowledgements

I would like to say thank you to the people at valour-software for some excellent packages that made implementing this project far easier than it would have been using the basic chart.js and bootstrap packages. Also, the people at StartAngular for putting SB2 out there.

angular-cli-sb2-bs4's People

Contributors

angular-cli avatar dependabot[bot] avatar douglaswebster avatar greenkeeper[bot] avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

angular-cli-sb2-bs4's Issues

An in-range update of @angular/http is breaking the build 🚨

Version 4.0.2 of @angular/http just got published.

Branch Build failing 🚨
Dependency @angular/http
Current Version 4.0.1
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As @angular/http is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of jasmine-core is breaking the build 🚨

Version 2.6.3 of jasmine-core just got published.

Branch Build failing 🚨
Dependency jasmine-core
Current Version 2.6.2
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As jasmine-core is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details

Release Notes 2.6.3

Please see the release notes

Commits

The new version differs by 2 commits.

  • ca5b1de bump version to 2.6.3
  • a3bc747 Make sure the queue runner goes async for async specs

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @angular/platform-browser is breaking the build 🚨

Version 4.0.2 of @angular/platform-browser just got published.

Branch Build failing 🚨
Dependency @angular/platform-browser
Current Version 4.0.1
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As @angular/platform-browser is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @angular/common is breaking the build 🚨

Version 4.0.2 of @angular/common just got published.

Branch Build failing 🚨
Dependency @angular/common
Current Version 4.0.1
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As @angular/common is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @types/node is breaking the build 🚨

Version 7.0.10 of @types/node just got published.

Branch Build failing 🚨
Dependency @types/node
Current Version 7.0.9
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As @types/node is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @angular/forms is breaking the build 🚨

Version 4.0.2 of @angular/forms just got published.

Branch Build failing 🚨
Dependency @angular/forms
Current Version 4.0.1
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As @angular/forms is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @types/node is breaking the build 🚨

Version 7.0.13 of @types/node just got published.

Branch Build failing 🚨
Dependency @types/node
Current Version 7.0.12
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As @types/node is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @angular/compiler-cli is breaking the build 🚨

Version 4.0.2 of @angular/compiler-cli just got published.

Branch Build failing 🚨
Dependency @angular/compiler-cli
Current Version 4.0.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As @angular/compiler-cli is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of codecov is breaking the build 🚨

Version 2.2.0 of codecov just got published.

Branch Build failing 🚨
Dependency codecov
Current Version 2.1.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As codecov is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes v2.2.0

Added: Support for Jenkins Blue Ocean
Added: Clear function to remove all discovered reports after uploading
Fix for Gitlab CI

Commits

The new version differs by 8 commits0.

  • 7f8a29b v2.2.0
  • 576b9fe add CI_REPOSITORY_URL to gitlab detection, fix #60
  • 74a44f2 added -C to unlink reports after uploading
  • d1bf5e4 Merge pull request #56 from rochdev/blue-ocean
  • 0a3cea3 Add support for Jenkins Blue Ocean
  • b365cd8 Merge pull request #57 from codecov/fix/cleanup
  • 7f220cc Removing old execSync code from tests
  • 4ba4609 v2.1.0

false

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of ts-node is breaking the build 🚨

Version 3.0.3 of ts-node just got published.

Branch Build failing 🚨
Dependency ts-node
Current Version 3.0.2
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As ts-node is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details - ❌ **continuous-integration/travis-ci/push** The Travis CI build failed [Details](https://travis-ci.org/DouglasWebster/angular-cli-sb2-bs4/builds/228513193?utm_source=github_status&utm_medium=notification)

Commits

The new version differs by 6 commits0.

  • 1856f71 3.0.3
  • 491ce93 Delete config options after TypeScript parse (#321)
  • f3ce9a5 Add Greenkeeper badge 🌴 (#316)
  • c18692a Update Travis CI build matrix (#303)
  • 8e3c7e5 Update TSLint
  • 8146c91 Add info about tsconfig-paths to readme (#295)

false

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of ng2-charts is breaking the build 🚨

The dependency ng2-charts was updated from 2.2.3 to 2.2.4.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ng2-charts is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • ci/circleci: build: Your tests failed on CircleCI (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @angular/common is breaking the build 🚨

Version 4.0.1 of @angular/common just got published.

Branch Build failing 🚨
Dependency @angular/common
Current Version 4.0.0
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As @angular/common is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


Status Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of codecov is breaking the build 🚨

The devDependency codecov was updated from 3.6.4 to 3.6.5.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

codecov is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci: build: Your tests failed on CircleCI (Details).

Commits

The new version differs by 2 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of karma-jasmine-html-reporter is breaking the build 🚨

The devDependency karma-jasmine-html-reporter was updated from 1.3.1 to 1.4.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

karma-jasmine-html-reporter is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci: build: Your tests failed on CircleCI (Details).

Commits

The new version differs by 1 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of protractor is breaking the build 🚨

Version 5.1.2 of protractor just got published.

Branch Build failing 🚨
Dependency protractor
Current Version 5.1.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As protractor is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 35 commits0.

  • ea72d55 chore(release): version bump and changelog for 5.1.2
  • a0a1fac chore(deps): Updating webdriver-manager and jasminewd2
  • 1a47076 fix(ci): Use latest pip on CircleCI
  • fd59c78 fix(elementexplorer): Set script breakpoints with cross-platform safe
  • 42846ec docs(asyncAwait): fix link in asyncAwait/README.md
  • 8bb0874 docs(developers): add fixes and links to api-overview.md
  • 2fbf993 chore(ci): Upgrade typescript in install test.
  • d0bfa6e chore(ci): Fix Circle CI.
  • 5cba564 chore(deps): Update typescript to fix tsc error.
  • 160a04b docs(phantomjs): Add deprecation notice for PhantomJS
  • 1250278 fix(cli): Correctly parse list chromeOptions
  • a655d45 Updated documentation for ignoreSynchronization
  • dd2ccbb feat(saucelabs): Add Sauce Labs protocol customization support
  • 183cd80 fix(browser): Fix browser.angularAppRoot()
  • aaba0f6 docs: fixed dead pre-requisites link & added link to release.md

There are 35 commits in total.

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of karma-coverage-istanbul-reporter is breaking the build 🚨

Version 1.3.0 of karma-coverage-istanbul-reporter just got published.

Branch Build failing 🚨
Dependency karma-coverage-istanbul-reporter
Current Version 1.2.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As karma-coverage-istanbul-reporter is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details

Commits

The new version differs by 5 commits.

  • e419a63 chore(release): 1.3.0
  • 4f534c0 chore: fix reporter on node 4
  • 1a894f0 feat(thresholds): allow overriding per file thresholds
  • 2de647c feat(thresholds): allow threshold logs not to be emitted as errors
  • bc957a1 chore: upgrade dependencies

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of jquery is breaking the build 🚨

The dependency jquery was updated from 3.3.1 to 3.4.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

jquery is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • ci/circleci: build: Your tests failed on CircleCI (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of chart.js is breaking the build 🚨

The dependency chart.js was updated from 2.9.0 to 2.9.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

chart.js is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • ci/circleci: build: Your tests failed on CircleCI (Details).

Release Notes for v2.9.1

Bug Fixes

  • #6603 Fix deprecation warnings for horizontal bar charts
  • #6608 Fix zoom plugin by no longer clipping scale.getDecimalForPixel to the chart area
  • #6617 Non numeric Y axes did not work

Documentation

  • #6613 Add link to performance documentation

Development

  • #6609 - Tests no longer use deprecated options

Thanks to the maintainers and collaborators for their help to improve and test Chart.js (@nagix, @kurkle, @benmccann, @etimberg and @simonbrunel).

Commits

The new version differs by 2 commits ahead by 2, behind by 1.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @angular/compiler-cli is breaking the build 🚨

Version 4.0.1 of @angular/compiler-cli just got published.

Branch Build failing 🚨
Dependency @angular/compiler-cli
Current Version 4.0.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As @angular/compiler-cli is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @angular/forms is breaking the build 🚨

Version 4.2.2 of @angular/forms just got published.

Branch Build failing 🚨
Dependency @angular/forms
Current Version 4.2.1
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

@angular/forms is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪

Status Details

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @angular/forms is breaking the build 🚨

Version 4.0.1 of @angular/forms just got published.

Branch Build failing 🚨
Dependency @angular/forms
Current Version 4.0.0
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As @angular/forms is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


Status Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @angular/platform-browser-dynamic is breaking the build 🚨

Version 4.0.2 of @angular/platform-browser-dynamic just got published.

Branch Build failing 🚨
Dependency @angular/platform-browser-dynamic
Current Version 4.0.1
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As @angular/platform-browser-dynamic is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of karma-coverage-istanbul-reporter is breaking the build 🚨

Version 1.1.0 of karma-coverage-istanbul-reporter just got published.

Branch Build failing 🚨
Dependency karma-coverage-istanbul-reporter
Current Version 1.0.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As karma-coverage-istanbul-reporter is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
Commits

The new version differs by 6 commits .

See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @angular/compiler is breaking the build 🚨

Version 4.0.2 of @angular/compiler just got published.

Branch Build failing 🚨
Dependency @angular/compiler
Current Version 4.0.1
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As @angular/compiler is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

Complete Readme

Complete the readme indicating:

  • how to obtain and install
  • simple instructions on usage with pointer to angular-cli
  • the basic layout of the project
  • any other info

An in-range update of ngx-bootstrap is breaking the build 🚨

The dependency ngx-bootstrap was updated from 3.0.1 to 3.1.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ngx-bootstrap is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • ci/circleci: build: Your tests failed on CircleCI (Details).

Release Notes for v3.1.1
FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of ngx-bootstrap is breaking the build 🚨

The dependency ngx-bootstrap was updated from 4.3.0 to 4.2.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ngx-bootstrap is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • ci/circleci: build: Your tests failed on CircleCI (Details).

Release Notes for v4.2.0
FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of typescript is breaking the build 🚨

Version 2.2.2 of typescript just got published.

Branch Build failing 🚨
Dependency typescript
Current Version 2.2.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As typescript is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
Release Notes TypeScript 2.2.2

This release include a set of bug fixes reported against TypeScript 2.2.1. For the complete list of fixed issues, check out the fixed issues query for TypeScript 2.2.2.

Download:

Commits

The new version differs by 6 commits .

  • d89553f Update LKG
  • 7ea8d9f Fix Per Request Cancellation Tokens
  • 8f41444 send error if obtaining of types-registry package failed (#14573) (#14585)
  • 6e8c44f Ports #14566 to release-2.2 (#14571)
  • f6b1738 Update LKG
  • e440dbb Update version

See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @angular/compiler is breaking the build 🚨

Version 4.0.1 of @angular/compiler just got published.

Branch Build failing 🚨
Dependency @angular/compiler
Current Version 4.0.0
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As @angular/compiler is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


Status Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @angular/router is breaking the build 🚨

Version 4.0.2 of @angular/router just got published.

Branch Build failing 🚨
Dependency @angular/router
Current Version 4.0.1
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As @angular/router is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @angular/platform-browser is breaking the build 🚨

Version 4.2.2 of @angular/platform-browser just got published.

Branch Build failing 🚨
Dependency @angular/platform-browser
Current Version 4.2.1
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

@angular/platform-browser is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪

Status Details

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of @angular/core is breaking the build 🚨

Version 4.0.2 of @angular/core just got published.

Branch Build failing 🚨
Dependency @angular/core
Current Version 4.0.1
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As @angular/core is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of zone.js is breaking the build 🚨

Version 0.8.5 of zone.js just got published.

Branch Build failing 🚨
Dependency zone.js
Current Version 0.8.4
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As zone.js is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


Status Details
Commits

The new version differs by 8 commits .

  • e11d9ff chore: release v0.8.5
  • 291d5a0 fix(REVERT): remove zone internal stack frames in error.stack (#632) (#690)
  • 61aee2e feat(dom): fix #664, patch window,document,SVGElement onProperties (#687)
  • 5635ac0 fix(jasmine): modify jasmine test ifEnvSupports message (#689)
  • 5c4e24d fix(event): fix #667, eventHandler should return result (#682)
  • 81297ee fix: add support for subclassing of Errors
  • 6010557 fix: improve long-stack-trace stack format detection
  • eeaab91 fix: remove left over console.log

See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of rxjs is breaking the build 🚨

Version 5.3.1 of rxjs just got published.

Branch Build failing 🚨
Dependency rxjs
Current Version 5.3.0
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

rxjs is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪

Status Details - ❌ **continuous-integration/travis-ci/push** The Travis CI build failed [Details](https://travis-ci.org/DouglasWebster/angular-cli-sb2-bs4/builds/228108437?utm_source=github_status&utm_medium=notification)

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

Version 10 of node.js has been released

Version 10 of Node.js (code name Dubnium) has been released! 🎊

To see what happens to your code in Node.js 10, Greenkeeper has created a branch with the following changes:

  • Added the new Node.js version to your .travis.yml

If you’re interested in upgrading this repo to Node.js 10, you can open a PR with these changes. Please note that this issue is just intended as a friendly reminder and the PR as a possible starting point for getting your code running on Node.js 10.

More information on this issue

Greenkeeper has checked the engines key in any package.json file, the .nvmrc file, and the .travis.yml file, if present.

  • engines was only updated if it defined a single version, not a range.
  • .nvmrc was updated to Node.js 10
  • .travis.yml was only changed if there was a root-level node_js that didn’t already include Node.js 10, such as node or lts/*. In this case, the new version was appended to the list. We didn’t touch job or matrix configurations because these tend to be quite specific and complex, and it’s difficult to infer what the intentions were.

For many simpler .travis.yml configurations, this PR should suffice as-is, but depending on what you’re doing it may require additional work or may not be applicable at all. We’re also aware that you may have good reasons to not update to Node.js 10, which is why this was sent as an issue and not a pull request. Feel free to delete it without comment, I’m a humble robot and won’t feel rejected 🤖


FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @types/node is breaking the build 🚨

Version 7.0.22 of @types/node just got published.

Branch Build failing 🚨
Dependency @types/node
Current Version 7.0.21
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As @types/node is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.