@aws-cdk/region-info 2.9.0 → 2.13.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-cdk/region-info",
3
- "version": "2.9.0",
3
+ "version": "2.13.0",
4
4
  "description": "AWS region information, such as service principal names",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -28,7 +28,14 @@
28
28
  ]
29
29
  }
30
30
  },
31
- "projectReferences": true
31
+ "projectReferences": true,
32
+ "metadata": {
33
+ "jsii": {
34
+ "rosetta": {
35
+ "strict": true
36
+ }
37
+ }
38
+ }
32
39
  },
33
40
  "scripts": {
34
41
  "gen": "bash build-tools/generate.sh",
@@ -53,8 +60,8 @@
53
60
  },
54
61
  "license": "Apache-2.0",
55
62
  "devDependencies": {
56
- "@aws-cdk/cdk-build-tools": "2.9.0",
57
- "@aws-cdk/pkglint": "2.9.0",
63
+ "@aws-cdk/cdk-build-tools": "2.13.0",
64
+ "@aws-cdk/pkglint": "2.13.0",
58
65
  "@types/fs-extra": "^8.1.2",
59
66
  "@types/jest": "^27.4.0",
60
67
  "fs-extra": "^9.1.0"
@@ -0,0 +1,11 @@
1
+ // Fixture with packages imported, but nothing else
2
+ import { Stack } from '@aws-cdk/core';
3
+ import { Construct } from 'constructs';
4
+ import * as regionInfo from '@aws-cdk/region-info';
5
+
6
+ class Fixture extends Stack {
7
+ constructor(scope: Construct, id: string) {
8
+ super(scope, id);
9
+ /// here
10
+ }
11
+ }