├── .editorconfig ├── .eslintignore ├── .eslintrc.cjs ├── .github └── workflows │ ├── release-preview.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.yaml ├── LICENSE ├── README.md ├── __mocks__ ├── defaultPlugin.js ├── import-from.js └── myPlugin.js ├── babel.config.cjs ├── jest.config.cjs ├── package.json └── src ├── appendStep.js ├── appendStep.test.js ├── index.js ├── wrapStep.js └── wrapStep.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/release-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/.github/workflows/release-preview.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/defaultPlugin.js: -------------------------------------------------------------------------------- 1 | module.exports = 'defaultPlugin'; 2 | -------------------------------------------------------------------------------- /__mocks__/import-from.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/__mocks__/import-from.js -------------------------------------------------------------------------------- /__mocks__/myPlugin.js: -------------------------------------------------------------------------------- 1 | export default 'myPlugin'; 2 | -------------------------------------------------------------------------------- /babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/babel.config.cjs -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/jest.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/package.json -------------------------------------------------------------------------------- /src/appendStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/src/appendStep.js -------------------------------------------------------------------------------- /src/appendStep.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/src/appendStep.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/src/index.js -------------------------------------------------------------------------------- /src/wrapStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/src/wrapStep.js -------------------------------------------------------------------------------- /src/wrapStep.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmowrer/semantic-release-plugin-decorators/HEAD/src/wrapStep.test.js --------------------------------------------------------------------------------