declapract-typescript-ehmpathy 0.17.2 → 0.17.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.
@@ -3,6 +3,9 @@
3
3
  "author": "@declapract{variable.organizationName}",
4
4
  "version": "@declapract{check.minVersion('0.0.0')}",
5
5
  "private": true,
6
+ "repository": "@declapract{variable.organizationName}/@declapract{variable.projectName}",
7
+ "homepage": "https://github.com/@declapract{variable.organizationName}/@declapract{variable.projectName}",
8
+ "bugs": "https://github.com/@declapract{variable.organizationName}/@declapract{variable.projectName}/issues",
6
9
  "scripts": {
7
10
  "prepush": "npm run test && npm run build",
8
11
  "preversion": "npm run prepush",
@@ -0,0 +1 @@
1
+ we've migrated to using `.ts` config files for jest config, rather than `.js`
@@ -0,0 +1,3 @@
1
+ import { FileCheckType } from 'declapract';
2
+
3
+ export const check = FileCheckType.EXISTS;
package/dist/useCases.yml CHANGED
@@ -26,6 +26,7 @@ use-cases:
26
26
  extends:
27
27
  - typescript-project
28
28
  practices:
29
+ - artifact
29
30
  - cicd-deploy-service
30
31
  - config
31
32
  - dates-and-times
@@ -38,11 +39,13 @@ use-cases:
38
39
  - terraform
39
40
  lambda-service-with-rds:
40
41
  extends:
42
+ - typescript-project # https://github.com/ehmpathy/declapract/issues/17
41
43
  - lambda-service
42
44
  practices:
43
45
  - persist-with-rds
44
46
  lambda-service-with-dynamodb: # note that projects can still use both by specifying the `declapract.use-case: [lambda-service-with-dynamodb, lambda-service-with-rds]` since we allow use-cases to add together. `use-cases` just enable us to enforce a "minimum" set of practices
45
47
  extends:
48
+ - typescript-project # https://github.com/ehmpathy/declapract/issues/17
46
49
  - lambda-service
47
50
  practices:
48
51
  - persist-with-dynamodb
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "declapract-typescript-ehmpathy",
3
- "version": "0.17.2",
3
+ "version": "0.17.3",
4
4
  "description": "declapract best practices declarations for typescript",
5
5
  "main": "src/index.js",
6
6
  "repository": "ehmpathy/declapract-typescript-ehmpathy",