jsii-release 0.2.205 → 0.2.209

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/.gitattributes CHANGED
@@ -15,6 +15,7 @@
15
15
  /.npmignore linguist-generated
16
16
  /.projen/** linguist-generated
17
17
  /.projen/deps.json linguist-generated
18
+ /.projen/files.json linguist-generated
18
19
  /.projen/tasks.json linguist-generated
19
20
  /LICENSE linguist-generated
20
21
  /package.json linguist-generated
@@ -27,9 +27,9 @@ if ! [ -z "${NPM_REGISTRY:-}" ] && [[ $NPM_REGISTRY =~ .codeartifact.*.amazonaws
27
27
  codeartifact_region="$(echo $NPM_REGISTRY | cut -d. -f4)"
28
28
  if [ -n "${AWS_ROLE_TO_ASSUME:-}" ]; then
29
29
  credentials=`aws sts assume-role --role-session-name "jsii-release-code-artifact" --role-arn ${AWS_ROLE_TO_ASSUME} --output text | sed -n '2 p'`
30
- AWS_ACCESS_KEY_ID="$(echo $credentials | cut -d' ' -f2)"
31
- AWS_SECRET_ACCESS_KEY="$(echo $credentials | cut -d' ' -f4)"
32
- AWS_SESSION_TOKEN="$(echo $credentials | cut -d' ' -f5)"
30
+ export AWS_ACCESS_KEY_ID="$(echo $credentials | cut -d' ' -f2)"
31
+ export AWS_SECRET_ACCESS_KEY="$(echo $credentials | cut -d' ' -f4)"
32
+ export AWS_SESSION_TOKEN="$(echo $credentials | cut -d' ' -f5)"
33
33
  fi
34
34
  NPM_TOKEN=`aws codeartifact get-authorization-token --domain $codeartifact_domain --domain-owner $codeartifact_account --region $codeartifact_region --query authorizationToken --output text`
35
35
  elif [ -z "${NPM_TOKEN:-}" ]; then
package/package.json CHANGED
@@ -39,20 +39,20 @@
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/jest": "^27.0.3",
42
- "@types/node": "^14.17.0",
42
+ "@types/node": "^12",
43
43
  "@typescript-eslint/eslint-plugin": "^5",
44
44
  "@typescript-eslint/parser": "^5",
45
45
  "eslint": "^8",
46
46
  "eslint-import-resolver-node": "^0.3.6",
47
47
  "eslint-import-resolver-typescript": "^2.5.0",
48
48
  "eslint-plugin-import": "^2.25.3",
49
- "jest": "^27.4.4",
49
+ "jest": "^27.4.5",
50
50
  "jest-junit": "^13",
51
51
  "json-schema": "^0.4.0",
52
- "npm-check-updates": "^11",
53
- "projen": "^0.40.1",
52
+ "npm-check-updates": "^12",
53
+ "projen": "^0.45.4",
54
54
  "standard-version": "^9",
55
- "ts-jest": "^27.1.1",
55
+ "ts-jest": "^27.1.2",
56
56
  "typescript": "^3.9.10"
57
57
  },
58
58
  "dependencies": {
@@ -67,7 +67,7 @@
67
67
  "main": "lib/index.js",
68
68
  "license": "Apache-2.0",
69
69
  "homepage": "https://github.com/aws/jsii-release",
70
- "version": "0.2.205",
70
+ "version": "0.2.209",
71
71
  "jest": {
72
72
  "testMatch": [
73
73
  "**/__tests__/**/*.ts?(x)",