@ndlib/ndlib-cdk2 1.0.41 → 1.0.42

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/README.md CHANGED
@@ -9,7 +9,7 @@ Creates an Aspect that will apply stack level tags to all stacks in the applicat
9
9
 
10
10
  | Key | Value |
11
11
  | ----------- | ---------------------------------------------------------- |
12
- | blueprintsRepo| Name of the CDK Blueprints repo deploying this stack |
12
+ | blueprintsRepository| Name of the CDK Blueprints repo deploying this stack |
13
13
  | contact | Contact information for the person(s) deploying this stack |
14
14
  | description | A description for the stacks |
15
15
  | owner | Name or CLID of the person deploying this stack |
package/lib/stack-tags.js CHANGED
@@ -14,12 +14,12 @@ class StackTags {
14
14
  const description = this.getContext('description', node);
15
15
  const contact = this.getContext('contact', node);
16
16
  const owner = this.getContext('owner', node);
17
- const blueprintsRepo = this.getContext('blueprintsRepo', node);
17
+ const blueprintsRepository = this.getContext('blueprintsRepository', node);
18
18
  node.tags.setTag('ProjectName', projectName);
19
19
  node.tags.setTag('Contact', contact);
20
20
  node.tags.setTag('Owner', owner);
21
21
  node.tags.setTag('Description', description);
22
- node.tags.setTag('BlueprintsRepo', blueprintsRepo);
22
+ node.tags.setTag('BlueprintsRepository', blueprintsRepository);
23
23
  if (!node.nested) {
24
24
  node.tags.setTag('Name', node.stackName);
25
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ndlib/ndlib-cdk2",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "description": "Reusable CDK2 modules used within Hesburgh Libraries of Notre Dame",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",