@tomei/media 0.10.0 → 0.10.1-test.1

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.
Files changed (37) hide show
  1. package/.commitlintrc.json +22 -22
  2. package/.gitlab-ci.yml +234 -16
  3. package/.husky/commit-msg +15 -15
  4. package/.husky/pre-commit +7 -7
  5. package/.prettierrc +4 -4
  6. package/.vscode/settings.json +3 -0
  7. package/README.md +93 -93
  8. package/dist/__tests__/common.service.spec.d.ts +1 -0
  9. package/dist/__tests__/common.service.spec.js +160 -0
  10. package/dist/__tests__/common.service.spec.js.map +1 -0
  11. package/dist/__tests__/medias.repository.spec.d.ts +1 -0
  12. package/dist/__tests__/medias.repository.spec.js +140 -0
  13. package/dist/__tests__/medias.repository.spec.js.map +1 -0
  14. package/dist/__tests__/medias.spec.d.ts +1 -0
  15. package/dist/__tests__/medias.spec.js +347 -0
  16. package/dist/__tests__/medias.spec.js.map +1 -0
  17. package/dist/__tests__/pipes.spec.d.ts +1 -0
  18. package/dist/__tests__/pipes.spec.js +130 -0
  19. package/dist/__tests__/pipes.spec.js.map +1 -0
  20. package/dist/medias.d.ts +2 -2
  21. package/dist/medias.js +7 -1
  22. package/dist/medias.js.map +1 -1
  23. package/dist/tsconfig.tsbuildinfo +1 -1
  24. package/eslint.config.mjs +58 -58
  25. package/jest.config.js +26 -0
  26. package/migration/0001-add-defaultyn-hiddenyn-to-media-table.js +36 -36
  27. package/migration/media-migration.js +82 -82
  28. package/nest-cli.json +18 -18
  29. package/package.json +83 -78
  30. package/sonar-project.properties +12 -12
  31. package/src/__tests__/common.service.spec.ts +203 -0
  32. package/src/__tests__/medias.repository.spec.ts +158 -0
  33. package/src/__tests__/medias.spec.ts +468 -0
  34. package/src/__tests__/pipes.spec.ts +154 -0
  35. package/src/medias.ts +11 -3
  36. package/tsconfig.build.json +4 -4
  37. package/tsconfig.json +30 -30
package/tsconfig.json CHANGED
@@ -1,31 +1,31 @@
1
- {
2
- "compilerOptions": {
3
- "module": "commonjs",
4
- "declaration": true,
5
- "removeComments": true,
6
- "emitDecoratorMetadata": true,
7
- "experimentalDecorators": true,
8
- "allowSyntheticDefaultImports": true,
9
- "moduleResolution": "node",
10
- "target": "es2017",
11
- "sourceMap": true,
12
- "outDir": "./dist",
13
- "baseUrl": "./",
14
- "incremental": true,
15
- "skipLibCheck": true,
16
- "strictNullChecks": false,
17
- "noImplicitAny": false,
18
- "strictBindCallApply": false,
19
- "forceConsistentCasingInFileNames": false,
20
- "noFallthroughCasesInSwitch": false,
21
- "paths": {
22
- "@app/media": [
23
- "libs/media/src"
24
- ],
25
- "@app/media/*": [
26
- "libs/media/src/*"
27
- ]
28
- }
29
- },
30
- "exclude": ["node_modules", "dist"]
1
+ {
2
+ "compilerOptions": {
3
+ "module": "commonjs",
4
+ "declaration": true,
5
+ "removeComments": true,
6
+ "emitDecoratorMetadata": true,
7
+ "experimentalDecorators": true,
8
+ "allowSyntheticDefaultImports": true,
9
+ "moduleResolution": "node",
10
+ "target": "es2017",
11
+ "sourceMap": true,
12
+ "outDir": "./dist",
13
+ "baseUrl": "./",
14
+ "incremental": true,
15
+ "skipLibCheck": true,
16
+ "strictNullChecks": false,
17
+ "noImplicitAny": false,
18
+ "strictBindCallApply": false,
19
+ "forceConsistentCasingInFileNames": false,
20
+ "noFallthroughCasesInSwitch": false,
21
+ "paths": {
22
+ "@app/media": [
23
+ "libs/media/src"
24
+ ],
25
+ "@app/media/*": [
26
+ "libs/media/src/*"
27
+ ]
28
+ }
29
+ },
30
+ "exclude": ["node_modules", "dist"]
31
31
  }