├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── __tests__ └── soft-delete.spec.ts ├── jest.config.js ├── package.json ├── prettier.config.js ├── src ├── common.ts ├── decorator.ts ├── handler.ts ├── index.ts ├── tsconfig.build.json └── tsconfig.json ├── tsconfig.build.json └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /lib 3 | 4 | .eslintcache 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/soft-delete.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/__tests__/soft-delete.spec.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | trailingComma: "all", 3 | }; 4 | -------------------------------------------------------------------------------- /src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/src/common.ts -------------------------------------------------------------------------------- /src/decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/src/decorator.ts -------------------------------------------------------------------------------- /src/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/src/handler.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/src/tsconfig.build.json -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Char2sGu/mikro-orm-soft-delete/HEAD/tsconfig.json --------------------------------------------------------------------------------