@aws-amplify/graphql-index-transformer 3.0.9 → 3.0.10

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.0.10](https://github.com/aws-amplify/amplify-category-api/compare/@aws-amplify/graphql-index-transformer@3.0.9...@aws-amplify/graphql-index-transformer@3.0.10) (2024-12-17)
7
+
8
+ **Note:** Version bump only for package @aws-amplify/graphql-index-transformer
9
+
6
10
  ## [3.0.9](https://github.com/aws-amplify/amplify-category-api/compare/@aws-amplify/graphql-index-transformer@3.0.8...@aws-amplify/graphql-index-transformer@3.0.9) (2024-11-14)
7
11
 
8
12
  **Note:** Version bump only for package @aws-amplify/graphql-index-transformer
package/jest.config.js ADDED
@@ -0,0 +1,12 @@
1
+ const baseConfig = require('../../jest.config.base.js'); // eslint-disable-line @typescript-eslint/no-var-requires
2
+
3
+ module.exports = {
4
+ ...baseConfig,
5
+ coverageThreshold: {
6
+ global: {
7
+ branches: 88,
8
+ lines: 90,
9
+ functions: 90,
10
+ },
11
+ },
12
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-amplify/graphql-index-transformer",
3
- "version": "3.0.9",
3
+ "version": "3.0.10",
4
4
  "description": "Amplify GraphQL index and key transformers",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,57 +29,20 @@
29
29
  "extract-api": "ts-node ../../scripts/extract-api.ts"
30
30
  },
31
31
  "dependencies": {
32
- "@aws-amplify/graphql-directives": "2.6.0",
33
- "@aws-amplify/graphql-model-transformer": "3.1.1",
34
- "@aws-amplify/graphql-transformer-core": "3.3.1",
35
- "@aws-amplify/graphql-transformer-interfaces": "4.2.0",
32
+ "@aws-amplify/graphql-directives": "2.6.1",
33
+ "@aws-amplify/graphql-model-transformer": "3.1.2",
34
+ "@aws-amplify/graphql-transformer-core": "3.3.2",
35
+ "@aws-amplify/graphql-transformer-interfaces": "4.2.1",
36
36
  "graphql": "^15.5.0",
37
- "graphql-mapping-template": "5.0.1",
38
- "graphql-transformer-common": "5.1.1"
37
+ "graphql-mapping-template": "5.0.2",
38
+ "graphql-transformer-common": "5.1.2"
39
39
  },
40
40
  "devDependencies": {
41
- "@aws-amplify/graphql-transformer-test-utils": "1.0.8"
41
+ "@aws-amplify/graphql-transformer-test-utils": "1.0.9"
42
42
  },
43
43
  "peerDependencies": {
44
- "aws-cdk-lib": "^2.158.0",
44
+ "aws-cdk-lib": "^2.168.0",
45
45
  "constructs": "^10.3.0"
46
46
  },
47
- "jest": {
48
- "transform": {
49
- "^.+\\.(ts|tsx)?$": "ts-jest"
50
- },
51
- "testRegex": "(src/__tests__/.*.test.ts)$",
52
- "moduleFileExtensions": [
53
- "ts",
54
- "tsx",
55
- "js",
56
- "jsx",
57
- "json",
58
- "node"
59
- ],
60
- "collectCoverage": true,
61
- "coverageProvider": "v8",
62
- "coverageThreshold": {
63
- "global": {
64
- "branches": 87,
65
- "functions": 90,
66
- "lines": 90
67
- }
68
- },
69
- "coverageReporters": [
70
- "clover",
71
- "text"
72
- ],
73
- "collectCoverageFrom": [
74
- "src/**/*.ts"
75
- ],
76
- "coveragePathIgnorePatterns": [
77
- "/__tests__/"
78
- ],
79
- "snapshotFormat": {
80
- "escapeString": true,
81
- "printBasicPrototype": true
82
- }
83
- },
84
- "gitHead": "c5f6478018fc10243fa4f64954003610e9243e21"
47
+ "gitHead": "9c5ee69a82e52f094f57da66bc7940758c0b2263"
85
48
  }