├── .DS_Store ├── .all-contributorsrc ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── add-good-first-issue-labels.yml │ ├── automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml │ ├── automerge-for-humans-merging.yml │ ├── automerge-for-humans-remove-ready-to-merge-label-on-edit.yml │ ├── automerge-orphans.yml │ ├── automerge.yml │ ├── autoupdate.yml │ ├── bounty-program-commands.yml │ ├── bump.yml │ ├── help-command.yml │ ├── if-nodejs-pr-testing.yml │ ├── if-nodejs-release.yml │ ├── if-nodejs-version-bump.yml │ ├── issues-prs-notifications.yml │ ├── lint-pr-title.yml │ ├── notify-tsc-members-mention.yml │ ├── please-take-a-look-command.yml │ ├── release-announcements.yml │ ├── scripts │ ├── README.md │ └── mailchimp │ │ ├── htmlContent.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json │ ├── stale-issues-prs.yml │ ├── transfer-issue.yml │ ├── update-docs-on-docs-commits.yml │ ├── update-maintainers-trigger.yaml │ ├── update-pr.yml │ └── welcome-first-time-contrib.yml ├── .gitignore ├── .releaserc ├── API.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── readme-banner.png ├── jest.config.js ├── package.json ├── src ├── components │ ├── File.tsx │ ├── Indent.tsx │ ├── Text.tsx │ ├── __tests__ │ │ ├── File.spec.tsx │ │ ├── Indent.spec.tsx │ │ └── Text.spec.tsx │ └── index.ts ├── index.ts ├── renderer │ ├── __tests__ │ │ ├── file-tests │ │ │ ├── async-template.js │ │ │ ├── file-templates.js │ │ │ └── single-template.js │ │ ├── renderer.spec.tsx │ │ └── template.spec.ts │ ├── index.ts │ ├── renderer.ts │ └── template.ts ├── transpiler │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── transpiler.spec.tsx.snap │ │ ├── testfiles │ │ │ ├── CommonJS │ │ │ │ └── simple.js │ │ │ ├── ES5 │ │ │ │ └── simple.js │ │ │ ├── ES6 │ │ │ │ └── simple.js │ │ │ └── SpecialChars │ │ │ │ └── $$simple$$.js │ │ └── transpiler.spec.tsx │ ├── index.ts │ └── transpiler.ts ├── types.ts └── utils │ ├── getStatsInDir.ts │ ├── index.ts │ ├── isJsFile.ts │ ├── withIndendation.ts │ └── withNewLines.ts └── tsconfig.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.DS_Store -------------------------------------------------------------------------------- /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/add-good-first-issue-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/add-good-first-issue-labels.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-merging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/automerge-for-humans-merging.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-remove-ready-to-merge-label-on-edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/automerge-for-humans-remove-ready-to-merge-label-on-edit.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-orphans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/automerge-orphans.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/bounty-program-commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/bounty-program-commands.yml -------------------------------------------------------------------------------- /.github/workflows/bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/bump.yml -------------------------------------------------------------------------------- /.github/workflows/help-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/help-command.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-pr-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/if-nodejs-pr-testing.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/if-nodejs-release.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-version-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/if-nodejs-version-bump.yml -------------------------------------------------------------------------------- /.github/workflows/issues-prs-notifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/issues-prs-notifications.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/lint-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/notify-tsc-members-mention.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/notify-tsc-members-mention.yml -------------------------------------------------------------------------------- /.github/workflows/please-take-a-look-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/please-take-a-look-command.yml -------------------------------------------------------------------------------- /.github/workflows/release-announcements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/release-announcements.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/scripts/README.md -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/htmlContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/scripts/mailchimp/htmlContent.js -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/scripts/mailchimp/index.js -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/scripts/mailchimp/package-lock.json -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/scripts/mailchimp/package.json -------------------------------------------------------------------------------- /.github/workflows/stale-issues-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/stale-issues-prs.yml -------------------------------------------------------------------------------- /.github/workflows/transfer-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/transfer-issue.yml -------------------------------------------------------------------------------- /.github/workflows/update-docs-on-docs-commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/update-docs-on-docs-commits.yml -------------------------------------------------------------------------------- /.github/workflows/update-maintainers-trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/update-maintainers-trigger.yaml -------------------------------------------------------------------------------- /.github/workflows/update-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/update-pr.yml -------------------------------------------------------------------------------- /.github/workflows/welcome-first-time-contrib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.github/workflows/welcome-first-time-contrib.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/.releaserc -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/API.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/README.md -------------------------------------------------------------------------------- /assets/readme-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/assets/readme-banner.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/package.json -------------------------------------------------------------------------------- /src/components/File.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/components/File.tsx -------------------------------------------------------------------------------- /src/components/Indent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/components/Indent.tsx -------------------------------------------------------------------------------- /src/components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/components/Text.tsx -------------------------------------------------------------------------------- /src/components/__tests__/File.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/components/__tests__/File.spec.tsx -------------------------------------------------------------------------------- /src/components/__tests__/Indent.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/components/__tests__/Indent.spec.tsx -------------------------------------------------------------------------------- /src/components/__tests__/Text.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/components/__tests__/Text.spec.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/renderer/__tests__/file-tests/async-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/renderer/__tests__/file-tests/async-template.js -------------------------------------------------------------------------------- /src/renderer/__tests__/file-tests/file-templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/renderer/__tests__/file-tests/file-templates.js -------------------------------------------------------------------------------- /src/renderer/__tests__/file-tests/single-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/renderer/__tests__/file-tests/single-template.js -------------------------------------------------------------------------------- /src/renderer/__tests__/renderer.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/renderer/__tests__/renderer.spec.tsx -------------------------------------------------------------------------------- /src/renderer/__tests__/template.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/renderer/__tests__/template.spec.ts -------------------------------------------------------------------------------- /src/renderer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/renderer/index.ts -------------------------------------------------------------------------------- /src/renderer/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/renderer/renderer.ts -------------------------------------------------------------------------------- /src/renderer/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/renderer/template.ts -------------------------------------------------------------------------------- /src/transpiler/__tests__/__snapshots__/transpiler.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/transpiler/__tests__/__snapshots__/transpiler.spec.tsx.snap -------------------------------------------------------------------------------- /src/transpiler/__tests__/testfiles/CommonJS/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/transpiler/__tests__/testfiles/CommonJS/simple.js -------------------------------------------------------------------------------- /src/transpiler/__tests__/testfiles/ES5/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/transpiler/__tests__/testfiles/ES5/simple.js -------------------------------------------------------------------------------- /src/transpiler/__tests__/testfiles/ES6/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/transpiler/__tests__/testfiles/ES6/simple.js -------------------------------------------------------------------------------- /src/transpiler/__tests__/testfiles/SpecialChars/$$simple$$.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/transpiler/__tests__/testfiles/SpecialChars/$$simple$$.js -------------------------------------------------------------------------------- /src/transpiler/__tests__/transpiler.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/transpiler/__tests__/transpiler.spec.tsx -------------------------------------------------------------------------------- /src/transpiler/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./transpiler"; 2 | -------------------------------------------------------------------------------- /src/transpiler/transpiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/transpiler/transpiler.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/getStatsInDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/utils/getStatsInDir.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/isJsFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/utils/isJsFile.ts -------------------------------------------------------------------------------- /src/utils/withIndendation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/utils/withIndendation.ts -------------------------------------------------------------------------------- /src/utils/withNewLines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/src/utils/withNewLines.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi-archived-repos/generator-react-sdk/HEAD/tsconfig.json --------------------------------------------------------------------------------