├── .fatherrc.ts ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── spec ├── plugin.spec.ts └── pre.spec.ts ├── src ├── Plugin.ts ├── PluginTarget.ts ├── decorator.ts └── index.ts ├── tsconfig.json ├── tslint.json ├── vitest.config.ts └── yarn.lock /.fatherrc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/.fatherrc.ts -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /spec/plugin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/spec/plugin.spec.ts -------------------------------------------------------------------------------- /spec/pre.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/spec/pre.spec.ts -------------------------------------------------------------------------------- /src/Plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/src/Plugin.ts -------------------------------------------------------------------------------- /src/PluginTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/src/PluginTarget.ts -------------------------------------------------------------------------------- /src/decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/src/decorator.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/tslint.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yee94/plugin-decorator/HEAD/yarn.lock --------------------------------------------------------------------------------