├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── dist ├── alpine-timeago.js ├── alpine-timeago.js.map ├── alpine-timeago.min.js └── alpine-timeago.min.js.map ├── examples └── index.html ├── package.json ├── rollup.config.js └── src └── index.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcreichel/alpine-timeago/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.idea 3 | *.tgz 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | builds 3 | .github 4 | .idea 5 | rollup.config.js 6 | *.tgz 7 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcreichel/alpine-timeago/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcreichel/alpine-timeago/HEAD/README.md -------------------------------------------------------------------------------- /dist/alpine-timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcreichel/alpine-timeago/HEAD/dist/alpine-timeago.js -------------------------------------------------------------------------------- /dist/alpine-timeago.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcreichel/alpine-timeago/HEAD/dist/alpine-timeago.js.map -------------------------------------------------------------------------------- /dist/alpine-timeago.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcreichel/alpine-timeago/HEAD/dist/alpine-timeago.min.js -------------------------------------------------------------------------------- /dist/alpine-timeago.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcreichel/alpine-timeago/HEAD/dist/alpine-timeago.min.js.map -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcreichel/alpine-timeago/HEAD/examples/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcreichel/alpine-timeago/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcreichel/alpine-timeago/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcreichel/alpine-timeago/HEAD/src/index.js --------------------------------------------------------------------------------