@gradientedge/cdk-utils 5.13.0 → 5.14.0

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.
@@ -58,7 +58,6 @@ class SqsManager {
58
58
  createQueue(id, scope, props, deadLetterQueue) {
59
59
  if (!props)
60
60
  throw `Queue props undefined`;
61
- console.log(props);
62
61
  const queue = new sqs.Queue(scope, id, {
63
62
  queueName: props.queueName,
64
63
  visibilityTimeout: props.visibilityTimeoutInSecs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "5.13.0",
3
+ "version": "5.14.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -46,11 +46,11 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@types/lodash": "^4.14.182",
49
- "@types/node": "^18.6.1",
49
+ "@types/node": "^18.6.4",
50
50
  "app-root-path": "^3.0.0",
51
- "aws-cdk-lib": "^2.33.0",
52
- "aws-sdk": "^2.1182.0",
53
- "constructs": "^10.1.58",
51
+ "aws-cdk-lib": "^2.35.0",
52
+ "aws-sdk": "^2.1189.0",
53
+ "constructs": "^10.1.67",
54
54
  "lodash": "^4.17.21",
55
55
  "moment": "^2.29.4",
56
56
  "nconf": "^0.12.0",
@@ -60,27 +60,27 @@
60
60
  "devDependencies": {
61
61
  "@babel/plugin-proposal-class-properties": "^7.18.6",
62
62
  "@types/jest": "^28.1.6",
63
- "@typescript-eslint/eslint-plugin": "^5.31.0",
64
- "@typescript-eslint/parser": "^5.31.0",
63
+ "@typescript-eslint/eslint-plugin": "^5.32.0",
64
+ "@typescript-eslint/parser": "^5.32.0",
65
65
  "aws-cdk": "*",
66
66
  "babel-eslint": "^10.1.0",
67
67
  "better-docs": "^2.7.2",
68
68
  "codecov": "^3.8.3",
69
69
  "commitizen": "^4.2.5",
70
70
  "dotenv": "^16.0.1",
71
- "eslint": "^8.20.0",
71
+ "eslint": "^8.21.0",
72
72
  "eslint-config-prettier": "^8.5.0",
73
73
  "eslint-plugin-import": "^2.26.0",
74
74
  "husky": "^8.0.1",
75
75
  "jest": "^28.1.3",
76
- "jest-extended": "^3.0.1",
76
+ "jest-extended": "^3.0.2",
77
77
  "jest-junit": "^14.0.0",
78
78
  "jsdoc": "^3.6.11",
79
79
  "jsdoc-babel": "^0.5.0",
80
80
  "jsdoc-mermaid": "^1.0.0",
81
81
  "lerna": "^5.3.0",
82
82
  "prettier": "^2.7.1",
83
- "prettier-plugin-organize-imports": "^3.0.0",
83
+ "prettier-plugin-organize-imports": "^3.0.1",
84
84
  "rimraf": "^3.0.2",
85
85
  "semantic-release": "^19.0.3",
86
86
  "ts-jest": "^28.0.7",
@@ -88,7 +88,7 @@
88
88
  "typescript": "4.7.4"
89
89
  },
90
90
  "optionalDependencies": {
91
- "@babel/core": "^7.18.9",
91
+ "@babel/core": "^7.18.10",
92
92
  "prop-types": "^15.8.1",
93
93
  "react": "^18.2.0",
94
94
  "react-dom": "^18.2.0"
@@ -35,8 +35,6 @@ export class SqsManager {
35
35
  public createQueue(id: string, scope: common.CommonConstruct, props: types.QueueProps, deadLetterQueue?: sqs.IQueue) {
36
36
  if (!props) throw `Queue props undefined`
37
37
 
38
- console.log(props)
39
-
40
38
  const queue = new sqs.Queue(scope, id, {
41
39
  queueName: props.queueName,
42
40
  visibilityTimeout: props.visibilityTimeoutInSecs