├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .hallmarkrc ├── LICENSE ├── README.md ├── logo.svg └── website ├── badge.svg ├── build.mjs ├── favicon.svg ├── index.css ├── link.svg ├── package.json └── vendor └── dracula-2.22.4 ├── LICENSE └── dracula-soft.json /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/common-changelog/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.hallmarkrc: -------------------------------------------------------------------------------- 1 | { 2 | "repository": "vweevers/common-changelog" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/common-changelog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/common-changelog/HEAD/README.md -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/common-changelog/HEAD/logo.svg -------------------------------------------------------------------------------- /website/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/common-changelog/HEAD/website/badge.svg -------------------------------------------------------------------------------- /website/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/common-changelog/HEAD/website/build.mjs -------------------------------------------------------------------------------- /website/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/common-changelog/HEAD/website/favicon.svg -------------------------------------------------------------------------------- /website/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/common-changelog/HEAD/website/index.css -------------------------------------------------------------------------------- /website/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/common-changelog/HEAD/website/link.svg -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/common-changelog/HEAD/website/package.json -------------------------------------------------------------------------------- /website/vendor/dracula-2.22.4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/common-changelog/HEAD/website/vendor/dracula-2.22.4/LICENSE -------------------------------------------------------------------------------- /website/vendor/dracula-2.22.4/dracula-soft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vweevers/common-changelog/HEAD/website/vendor/dracula-2.22.4/dracula-soft.json --------------------------------------------------------------------------------