nestjs-testing-utils 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,10 +1,15 @@
1
1
  {
2
2
  "name": "nestjs-testing-utils",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "mock db and validators classes for nestjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/types/index.d.ts",
7
7
  "private": false,
8
+ "files": [
9
+ "dist",
10
+ "README.md",
11
+ "LICENSE"
12
+ ],
8
13
  "scripts": {
9
14
  "test": "echo \"Error: no test specified\" && exit 1",
10
15
  "build": "tsc"
package/index.ts DELETED
@@ -1,4 +0,0 @@
1
- export { Validator } from "./src/pipes/validation.pipe";
2
- export { UpdateValidator } from "./src/pipes/updateValitation.pipe";
3
- export { BaseMockRepository } from "./src/mocks/baseMockRepo";
4
- export type { IRepository } from "./src/interface/repository.interface";
package/tsconfig.json DELETED
@@ -1,26 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "types": ["node"],
4
- "module": "nodenext",
5
- "moduleResolution": "nodenext",
6
- "resolvePackageJsonExports": true,
7
- "esModuleInterop": true,
8
- "isolatedModules": true,
9
- "declaration": true,
10
- "removeComments": true,
11
- "emitDecoratorMetadata": true,
12
- "experimentalDecorators": true,
13
- "allowSyntheticDefaultImports": true,
14
- "target": "ES2023",
15
- "sourceMap": true,
16
- "outDir": "./dist",
17
- "declarationDir": "dist/types",
18
- "incremental": true,
19
- "skipLibCheck": true,
20
- "strictNullChecks": true,
21
- "forceConsistentCasingInFileNames": true,
22
- "noImplicitAny": false,
23
- "strictBindCallApply": false,
24
- "noFallthroughCasesInSwitch": false
25
- }
26
- }