├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── discussion.yml │ ├── documentation.yml │ └── feature-request.yml └── workflows │ └── save_articles.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── CODE_OF_CONDUCT.md ├── Contributing.md ├── Examples.md ├── GetStarted.md ├── LICENSE ├── README.md ├── action.yml ├── dist ├── 37.index.js ├── index.js ├── types.js └── utils │ ├── createArticlesReadme.js │ ├── createMarkdownFile.js │ ├── createReadingList.js │ ├── fetchDevArticleUsingId.js │ ├── fetchDevToArticles.js │ ├── fetchDevToReadingList.js │ ├── git.js │ ├── parseMarkdownContent.js │ ├── performGitActions.js │ ├── savedArticlesReadme.js │ └── synchronizeReadingList.js ├── package.json ├── src ├── index.ts ├── types.ts └── utils │ ├── createArticlesReadme.ts │ ├── createMarkdownFile.ts │ ├── createReadingList.ts │ ├── fetchDevArticleUsingId.ts │ ├── fetchDevToArticles.ts │ ├── fetchDevToReadingList.ts │ ├── git.ts │ ├── parseMarkdownContent.ts │ ├── performGitActions.ts │ ├── savedArticlesReadme.ts │ └── synchronizeReadingList.ts └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/discussion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/.github/ISSUE_TEMPLATE/discussion.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/workflows/save_articles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/.github/workflows/save_articles.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/Contributing.md -------------------------------------------------------------------------------- /Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/Examples.md -------------------------------------------------------------------------------- /GetStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/GetStarted.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/action.yml -------------------------------------------------------------------------------- /dist/37.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/dist/37.index.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /dist/utils/createArticlesReadme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/dist/utils/createArticlesReadme.js -------------------------------------------------------------------------------- /dist/utils/createMarkdownFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/dist/utils/createMarkdownFile.js -------------------------------------------------------------------------------- /dist/utils/createReadingList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/dist/utils/createReadingList.js -------------------------------------------------------------------------------- /dist/utils/fetchDevArticleUsingId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/dist/utils/fetchDevArticleUsingId.js -------------------------------------------------------------------------------- /dist/utils/fetchDevToArticles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/dist/utils/fetchDevToArticles.js -------------------------------------------------------------------------------- /dist/utils/fetchDevToReadingList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/dist/utils/fetchDevToReadingList.js -------------------------------------------------------------------------------- /dist/utils/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/dist/utils/git.js -------------------------------------------------------------------------------- /dist/utils/parseMarkdownContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/dist/utils/parseMarkdownContent.js -------------------------------------------------------------------------------- /dist/utils/performGitActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/dist/utils/performGitActions.js -------------------------------------------------------------------------------- /dist/utils/savedArticlesReadme.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | -------------------------------------------------------------------------------- /dist/utils/synchronizeReadingList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/dist/utils/synchronizeReadingList.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/createArticlesReadme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/src/utils/createArticlesReadme.ts -------------------------------------------------------------------------------- /src/utils/createMarkdownFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/src/utils/createMarkdownFile.ts -------------------------------------------------------------------------------- /src/utils/createReadingList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/src/utils/createReadingList.ts -------------------------------------------------------------------------------- /src/utils/fetchDevArticleUsingId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/src/utils/fetchDevArticleUsingId.ts -------------------------------------------------------------------------------- /src/utils/fetchDevToArticles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/src/utils/fetchDevToArticles.ts -------------------------------------------------------------------------------- /src/utils/fetchDevToReadingList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/src/utils/fetchDevToReadingList.ts -------------------------------------------------------------------------------- /src/utils/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/src/utils/git.ts -------------------------------------------------------------------------------- /src/utils/parseMarkdownContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/src/utils/parseMarkdownContent.ts -------------------------------------------------------------------------------- /src/utils/performGitActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/src/utils/performGitActions.ts -------------------------------------------------------------------------------- /src/utils/savedArticlesReadme.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/synchronizeReadingList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/src/utils/synchronizeReadingList.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anmol-Baranwal/DevtoGitHub/HEAD/tsconfig.json --------------------------------------------------------------------------------