Skip to content

Commit

Permalink
feat(PAT-3863): update ng-idle to Angular 10 (#3)
Browse files Browse the repository at this point in the history
* feat(angular dependency): update to angular 9.1.6

BREAKING CHANGE: required angular 9

fix grbsk#139

* docs: fix broken badge links in README

The Travis-CI and Coveralls badges broke when I renamed my account.

* chore: update github links in package

* docs: more broken links and remove gitter link

* chore(deps): update lerna

* build(hooks): run tests before pushing rather than on commit

Running tests before each commit slows the dev down, so I moved push over to pre-push. We still run
linting pre-commit and pre-push.

* chore(release): release

* feat(project): upgrade to angular 10

BREAKING CHANGE: required angular 10

* chore(*): rebuild pack-lock

* build(PAT-3863): update packages/ package.json

* build(PAT-3863): fix peer dep for core

Co-authored-by: Marco Piovesana <mpiovesana@esteco.com>
Co-authored-by: Mike Grabski <mike@mgrab.ski>
Co-authored-by: Raul Crisan <raul.crisan@fxbits.io>
Co-authored-by: Mychal Hackman <mychal.hackman@qhrtech.com>
  • Loading branch information
5 people authored Sep 9, 2020
1 parent e823e97 commit 06a85f2
Show file tree
Hide file tree
Showing 23 changed files with 16,499 additions and 8,643 deletions.
3 changes: 2 additions & 1 deletion .huskyrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"hooks": {
"pre-commit": "npm run lint && npm test",
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [9.0.0-beta.1](https://github.com/moribvndvs/ng2-idle/compare/v8.0.0-beta.4...v9.0.0-beta.1) (2020-07-01)


### Features

* **angular dependency:** update to angular 9.1.6 ([4379af2](https://github.com/moribvndvs/ng2-idle/commit/4379af29b906de683538401db2c690cb01e4576c)), closes [#139](https://github.com/moribvndvs/ng2-idle/issues/139)


### BREAKING CHANGES

* **angular dependency:** required angular 9





# [8.0.0-beta.4](https://github.com/HackedByChinese/ng2-idle/compare/v8.0.0-beta.3...v8.0.0-beta.4) (2019-07-23)

**Note:** Version bump only for package ng-idle
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Introduction

[![Join the chat at https://gitter.im/HackedByChinese/ng2-idle](https://badges.gitter.im/HackedByChinese/ng2-idle.svg)](https://gitter.im/HackedByChinese/ng2-idle?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://travis-ci.org/HackedByChinese/ng2-idle.svg?branch=master)](https://travis-ci.org/HackedByChinese/ng2-idle) [![Coverage Status](https://coveralls.io/repos/github/HackedByChinese/ng2-idle/badge.svg?branch=master)](https://coveralls.io/github/HackedByChinese/ng2-idle?branch=master)
[![Build Status](https://travis-ci.org/moribvndvs/ng2-idle.svg?branch=master)](https://travis-ci.org/moribvndvs/ng2-idle) [![Coverage Status](https://coveralls.io/repos/github/moribvndvs/ng2-idle/badge.svg?branch=master)](https://coveralls.io/github/moribvndvs/ng2-idle?branch=master)

A module for responding to idle users in Angular applications. This is a rewrite of the [ng-idle module](https://github.com/HackedByChinese/ng-idle); however if you are using Angular 1, you must use that module.
A module for responding to idle users in Angular applications. This is a rewrite of the [ng-idle module](https://github.com/moribvndvs/ng-idle); however if you are using Angular 1, you must use that module.

## MAINTAINERS WANTED

Expand All @@ -23,21 +23,21 @@ Ideally, a candidate:
- Is committed to releasing modular and lightweight (as possible) packages
- Has working understanding of DOM events, JavaScript timers and intervals, Web Storage API, and cookies
- Understands testing using Karma and Jasmine, and is committed to a high percentage of code coverage
- Has working understanding of the [contributing guide](https://github.com/HackedByChinese/ng2-idle/blob/master/CONTRIBUTING.md), is willing to accept contributions from others, and can use Github and related tools effectively
- Has working understanding of the [contributing guide](https://github.com/moribvndvs/ng2-idle/blob/master/CONTRIBUTING.md), is willing to accept contributions from others, and can use Github and related tools effectively
- Has time to triage and answer tickets, or delegate to others
- Has basic understanding of NPM for releasing packages

Please get in touch if you are interested!

## License

Authored by **Mike Grabski** @HackedByChinese me@mikegrabski.com
Authored by **Mike Grabski** @moribvndvs

See [LICENSE](https://github.com/HackedByChinese/ng2-idle/blob/master/LICENSE) for licensing details.
See [LICENSE](https://github.com/moribvndvs/ng2-idle/blob/master/LICENSE) for licensing details.

## Demo

Visit https://hackedbychinese.github.io/ng2-idle to view a simple example with quick start instructions.
Visit https://moribvndvs.github.io/ng2-idle to view a simple example with quick start instructions.

## Quick start

Expand All @@ -47,7 +47,7 @@ Visit https://hackedbychinese.github.io/ng2-idle to view a simple example with q
npm install --save @ng-idle/core
```

Integrating and configuring the package into your application requires a few more steps. Please visit [@ng-idle-example](https://github.com/HackedByChinese/ng2-idle-example.git) for source and instructions on how to get going.
Integrating and configuring the package into your application requires a few more steps. Please visit [@ng-idle-example](https://github.com/moribvndvs/ng2-idle-example.git) for source and instructions on how to get going.

## Design Considerations

Expand Down Expand Up @@ -122,4 +122,4 @@ Note: Keepalive depends on Core. If you are running the above continuous tests,

## Contributing

See the [contributing guide](https://github.com/HackedByChinese/ng2-idle/blob/master/CONTRIBUTING.md).
See the [contributing guide](https://github.com/moribvndvs/ng2-idle/blob/master/CONTRIBUTING.md).
10 changes: 10 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
"options": {
"tsConfig": "projects/core/tsconfig.lib.json",
"project": "projects/core/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/core/tsconfig.lib.prod.json"
}
}
},
"test": {
Expand Down Expand Up @@ -49,6 +54,11 @@
"options": {
"tsConfig": "projects/keepalive/tsconfig.lib.json",
"project": "projects/keepalive/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/keepalive/tsconfig.lib.prod.json"
}
}
},
"test": {
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"projects/*"
],
"version": "9.0.0-qhr",
"version": "10.0.0-qhr-beta.1",
"command": {
"publish": {
"conventionalCommits": true
Expand Down
Loading

0 comments on commit 06a85f2

Please sign in to comment.