Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ihym/ngx-timeago
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.1
Choose a base ref
...
head repository: ihym/ngx-timeago
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 14,442 additions and 15,665 deletions.
  1. +56 −0 .github/ISSUE_TEMPLATE/Bug_report.md
  2. +27 −0 .github/ISSUE_TEMPLATE/Feature_request.md
  3. +8 −0 .github/ISSUE_TEMPLATE/Support_request.md
  4. +42 −56 .gitignore
  5. +6 −11 .travis.yml
  6. +70 −80 README.md
  7. +46 −197 angular.json
  8. +1 −1 demo/app/app-routing.module.ts
  9. +9 −7 demo/app/app.component.html
  10. +1 −1 demo/app/app.component.ts
  11. +1 −1 demo/app/app.module.ts
  12. +7 −5 demo/app/child/child.component.html
  13. +7 −3 demo/app/child/child.component.ts
  14. +3 −5 demo/app/shared/shared.module.ts
  15. +0 −3 demo/environments/environment.prod.ts
  16. +0 −8 demo/environments/environment.ts
  17. +4 −1 demo/index.html
  18. +0 −5 demo/main.ts
  19. +0 −66 demo/polyfills.ts
  20. +3 −0 demo/styles.css
  21. +0 −20 demo/test.ts
  22. +6 −16 demo/tsconfig.app.json
  23. +0 −23 demo/tsconfig.packages.json
  24. +0 −29 demo/tsconfig.spec.json
  25. +0 −5 demo/typings.d.ts
  26. +0 −17 gulpfile.js
  27. +0 −34 karma.conf.js
  28. +7 −0 lib/ng-package.json
  29. +8 −13 lib/package.json
  30. +1 −1 lib/src/language-strings/en-short.ts
  31. +1 −1 lib/src/language-strings/en.ts
  32. +1 −3 lib/src/language-strings/fr-short.ts
  33. +1 −3 lib/src/language-strings/fr.ts
  34. +1 −0 lib/src/public_api.ts
  35. +2 −2 { → lib/src}/tests/clock.spec.ts
  36. +142 −0 lib/src/tests/directive.spec.ts
  37. +2 −2 { → lib/src}/tests/formatter.spec.ts
  38. +190 −0 lib/src/tests/pipe.spec.ts
  39. +6 −6 lib/src/timeago.clock.ts
  40. +17 −17 lib/src/timeago.directive.ts
  41. +3 −5 lib/src/timeago.formatter.ts
  42. +5 −3 lib/src/timeago.module.ts
  43. +85 −0 lib/src/timeago.pipe.ts
  44. +13 −0 lib/tsconfig.lib.json
  45. +9 −0 lib/tsconfig.lib.prod.json
  46. +13 −0 lib/tsconfig.spec.json
  47. +13,561 −14,780 package-lock.json
  48. +36 −51 package.json
  49. +0 −53 tests/directive.spec.ts
  50. +22 −13 tsconfig.json
  51. +19 −0 tsconfig.locales.json
  52. +0 −118 tslint.json
56 changes: 56 additions & 0 deletions .github/ISSUE_TEMPLATE/Bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
name: "⚠️ Bug report"
about: Report a bug for this library. Please check the FAQ and search github/stackoverflow
for a similar issue before submitting

---

<!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
-->

## Current behavior
<!-- Describe how the issue manifests. -->


## Expected behavior
<!-- Describe what the desired behavior would be. -->


## How do you think that we should fix this?
<!-- If you can, describe how you would fix this. -->


## Minimal reproduction of the problem with instructions
<!--
For bug reports please provide the *STEPS TO REPRODUCE* and if possible a *MINIMAL DEMO* of the problem via
https://stackblitz.com or similar. You can use this template as a starting point: https://stackblitz.com/github/ngx-timeago/example
-->


## Environment

<pre><code>
ngx-timeago version: X.Y.Z
Angular version: X.Y.Z
<!-- Check whether this is still an issue in the most recent Angular version -->

Browser:
- [ ] Chrome (desktop) version XX
- [ ] Chrome (Android) version XX
- [ ] Chrome (iOS) version XX
- [ ] Firefox version XX
- [ ] Safari (desktop) version XX
- [ ] Safari (iOS) version XX
- [ ] IE version XX
- [ ] Edge version XX

For Tooling issues:
- Node version: XX <!-- run `node --version` -->
- Platform: <!-- Mac, Linux, Windows -->

Others:
<!-- Anything else relevant? Operating system version, IDE, package manager, HTTP server, ... -->
</code></pre>
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/Feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: "✨ Feature request"
about: Suggesting new features for this library. Please check if a similar feature
request exists before submitting

---

<!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
-->

## Current behavior
<!-- Describe how the issue manifests. -->


## Expected behavior
<!-- Describe what the desired behavior would be. -->


## What is the motivation / use case for changing the behavior?
<!-- Describe the motivation or the concrete use case. -->


## How do you think that we should implement this?
<!-- If you can, describe how you would implement this feature. -->
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/Support_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: ℹ️ Other / Support request
about: Please check the FAQ and search github/stackoverflow for a similar issue before
submitting

---


98 changes: 42 additions & 56 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,56 +1,42 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

dist/
.ng_build/
/demo/ngx-timeago
# See http://help.github.com/ignore-files/ for more about ignoring files.

# Compiled output
/dist
/tmp
/out-tsc
/bazel-out

# Node
/node_modules
npm-debug.log
yarn-error.log

# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings

# System files
.DS_Store
Thumbs.db
17 changes: 6 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -3,24 +3,19 @@ sudo: required
notifications:
email: false
node_js:
- '10'
before_install:
- export CHROME_BIN=chromium-browser
- if [[ `npm -v` != 6* ]]; then npm i -g npm@6; fi
- '18'
services:
- xvfb
addons:
chrome: stable
after_success:
- npm run build:lib
- npm run build:demo
- cp .git dist/ngx-timeago/ -r # required by semantic release
- cp README.md dist/ngx-timeago/
- cd dist/ngx-timeago
- npm install
- npm install semantic-release@8.2.3 --no-save
- npm run semantic-release
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
addons:
chrome: stable
branches:
except:
- /^v\d+\.\d+\.\d+$/
Loading