├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── coverage-badge.yml │ ├── docs.yml │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── .vitepress │ └── config.ts ├── contributing │ └── environment.md ├── guide │ ├── basic-usage.md │ ├── configuration.md │ └── getting-started.md ├── hall-of-fame │ └── contributors.md └── index.md ├── examples ├── .gitignore ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── App.vue │ ├── env.d.ts │ └── main.ts ├── tsconfig.json └── vite.config.ts ├── package.json ├── src ├── converter │ └── defaultConverter.ts ├── install.ts └── timeago.ts ├── tests └── unit │ ├── defaultConverter.spec.ts │ ├── install.spec.ts │ └── timeago.spec.ts ├── tsconfig.json └── vite.config.ts /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/coverage-badge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/.github/workflows/coverage-badge.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/README.md -------------------------------------------------------------------------------- /docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /docs/contributing/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/docs/contributing/environment.md -------------------------------------------------------------------------------- /docs/guide/basic-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/docs/guide/basic-usage.md -------------------------------------------------------------------------------- /docs/guide/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/docs/guide/configuration.md -------------------------------------------------------------------------------- /docs/guide/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/docs/guide/getting-started.md -------------------------------------------------------------------------------- /docs/hall-of-fame/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/docs/hall-of-fame/contributors.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/docs/index.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/examples/package-lock.json -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/examples/src/App.vue -------------------------------------------------------------------------------- /examples/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/examples/src/env.d.ts -------------------------------------------------------------------------------- /examples/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/examples/src/main.ts -------------------------------------------------------------------------------- /examples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/examples/tsconfig.json -------------------------------------------------------------------------------- /examples/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/examples/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/package.json -------------------------------------------------------------------------------- /src/converter/defaultConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/src/converter/defaultConverter.ts -------------------------------------------------------------------------------- /src/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/src/install.ts -------------------------------------------------------------------------------- /src/timeago.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/src/timeago.ts -------------------------------------------------------------------------------- /tests/unit/defaultConverter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/tests/unit/defaultConverter.spec.ts -------------------------------------------------------------------------------- /tests/unit/install.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/tests/unit/install.spec.ts -------------------------------------------------------------------------------- /tests/unit/timeago.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/tests/unit/timeago.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x0dr1y/vue-timeago3/HEAD/vite.config.ts --------------------------------------------------------------------------------