├── .eslintignore ├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .prettierignore ├── .releaserc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── .nojekyll ├── README.md └── interfaces │ ├── PluginConfig.md │ └── Replacement.md ├── fixtures ├── __init__.py ├── build.gradle └── foo.md ├── package.json ├── src ├── index.test.ts └── index.ts ├── tsconfig.json └── typedoc.cjs /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/.releaserc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/interfaces/PluginConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/docs/interfaces/PluginConfig.md -------------------------------------------------------------------------------- /docs/interfaces/Replacement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/docs/interfaces/Replacement.md -------------------------------------------------------------------------------- /fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/fixtures/__init__.py -------------------------------------------------------------------------------- /fixtures/build.gradle: -------------------------------------------------------------------------------- 1 | version = '1.0.0' -------------------------------------------------------------------------------- /fixtures/foo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/fixtures/foo.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoehnelt/semantic-release-replace-plugin/HEAD/typedoc.cjs --------------------------------------------------------------------------------