├── .github └── workflows │ ├── code_health.yml │ └── populate_feed.yml ├── .gitignore ├── .nvmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ └── utils.test.js ├── config.json ├── feed.xml ├── jest.config.cjs ├── package.json ├── scripts ├── build.js ├── collect-discussions.js ├── collect-issues.js ├── collect-releases.js ├── format-check.js ├── format.js └── validate.js └── utils └── index.js /.github/workflows/code_health.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/.github/workflows/code_health.yml -------------------------------------------------------------------------------- /.github/workflows/populate_feed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/.github/workflows/populate_feed.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.16.1 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/__tests__/utils.test.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/config.json -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/feed.xml -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/jest.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/collect-discussions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/scripts/collect-discussions.js -------------------------------------------------------------------------------- /scripts/collect-issues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/scripts/collect-issues.js -------------------------------------------------------------------------------- /scripts/collect-releases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/scripts/collect-releases.js -------------------------------------------------------------------------------- /scripts/format-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/scripts/format-check.js -------------------------------------------------------------------------------- /scripts/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/scripts/format.js -------------------------------------------------------------------------------- /scripts/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/scripts/validate.js -------------------------------------------------------------------------------- /utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/news-feeder-nodejs/HEAD/utils/index.js --------------------------------------------------------------------------------