From 8e2e9cc22672b0af1dbc0ea6d74cb3e83c9e5142 Mon Sep 17 00:00:00 2001 From: Piotr Srebniak Date: Wed, 17 Jan 2024 22:25:39 +0100 Subject: [PATCH] projen --- .github/workflows/build.yml | 12 ++-- .github/workflows/release.yml | 33 ++++----- .github/workflows/upgrade-cdk-version.yml | 1 - .github/workflows/upgrade-dev-deps-main.yml | 2 +- .github/workflows/upgrade-main.yml | 2 +- .gitignore | 2 +- .npmignore | 2 - .projen/deps.json | 29 +++++--- .projen/tasks.json | 7 +- package.json | 22 +++--- tsconfig.dev.json | 1 + yarn.lock | 80 +++++++-------------- 12 files changed, 87 insertions(+), 106 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 900c2860..8b69f375 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - name: Install dependencies run: yarn install --check-files - name: build @@ -91,7 +91,7 @@ jobs: steps: - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - name: Download build artifacts uses: actions/download-artifact@v3 with: @@ -120,7 +120,7 @@ jobs: java-version: 11.x - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - name: Download build artifacts uses: actions/download-artifact@v3 with: @@ -145,7 +145,7 @@ jobs: steps: - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - uses: actions/setup-python@v4 with: python-version: 3.x @@ -173,7 +173,7 @@ jobs: steps: - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - uses: actions/setup-dotnet@v3 with: dotnet-version: 3.x @@ -201,7 +201,7 @@ jobs: steps: - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - uses: actions/setup-go@v3 with: go-version: ^1.16.0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9a2e5fb5..138e2986 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,6 @@ jobs: contents: write outputs: latest_commit: ${{ steps.git_remote.outputs.latest_commit }} - tag_exists: ${{ steps.check_tag_exists.outputs.exists }} env: CI: "true" steps: @@ -28,17 +27,11 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - name: Install dependencies run: yarn install --check-files --frozen-lockfile - name: release run: npx projen release - - name: Check if releasetag already exists - id: check_tag_exists - run: |- - TAG=$(cat dist/dist/releasetag.txt) - ([ ! -z "$TAG" ] && git ls-remote -q --exit-code --tags origin $TAG && (echo "exists=true" >> $GITHUB_OUTPUT)) || echo "exists=false" >> $GITHUB_OUTPUT - cat $GITHUB_OUTPUT - name: Check for new commits id: git_remote run: echo "latest_commit=$(git ls-remote origin -h ${{ github.ref }} | cut -f1)" >> $GITHUB_OUTPUT @@ -58,11 +51,11 @@ jobs: runs-on: ubuntu-latest permissions: contents: write - if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha + if: needs.release.outputs.latest_commit == github.sha steps: - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - name: Download build artifacts uses: actions/download-artifact@v3 with: @@ -87,11 +80,11 @@ jobs: runs-on: ubuntu-latest permissions: contents: read - if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha + if: needs.release.outputs.latest_commit == github.sha steps: - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - name: Download build artifacts uses: actions/download-artifact@v3 with: @@ -120,7 +113,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read - if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha + if: needs.release.outputs.latest_commit == github.sha steps: - uses: actions/setup-java@v3 with: @@ -128,7 +121,7 @@ jobs: java-version: 11.x - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - name: Download build artifacts uses: actions/download-artifact@v3 with: @@ -160,11 +153,11 @@ jobs: runs-on: ubuntu-latest permissions: contents: read - if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha + if: needs.release.outputs.latest_commit == github.sha steps: - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - uses: actions/setup-python@v4 with: python-version: 3.x @@ -195,11 +188,11 @@ jobs: runs-on: ubuntu-latest permissions: contents: read - if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha + if: needs.release.outputs.latest_commit == github.sha steps: - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - uses: actions/setup-dotnet@v3 with: dotnet-version: 3.x @@ -229,11 +222,11 @@ jobs: runs-on: ubuntu-latest permissions: contents: read - if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha + if: needs.release.outputs.latest_commit == github.sha steps: - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - uses: actions/setup-go@v3 with: go-version: ^1.16.0 diff --git a/.github/workflows/upgrade-cdk-version.yml b/.github/workflows/upgrade-cdk-version.yml index 3666631a..c8eb2987 100644 --- a/.github/workflows/upgrade-cdk-version.yml +++ b/.github/workflows/upgrade-cdk-version.yml @@ -47,7 +47,6 @@ jobs: runs-on: ubuntu-latest # permissions: # contents: read -# pull-requests: write # remove if: ${{ needs.upgrade.outputs.patch_created }} steps: - name: Checkout diff --git a/.github/workflows/upgrade-dev-deps-main.yml b/.github/workflows/upgrade-dev-deps-main.yml index 2eec2005..f86173fe 100644 --- a/.github/workflows/upgrade-dev-deps-main.yml +++ b/.github/workflows/upgrade-dev-deps-main.yml @@ -21,7 +21,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - name: Install dependencies run: yarn install --check-files --frozen-lockfile - name: Upgrade dependencies diff --git a/.github/workflows/upgrade-main.yml b/.github/workflows/upgrade-main.yml index 48f9d830..0a177a1f 100644 --- a/.github/workflows/upgrade-main.yml +++ b/.github/workflows/upgrade-main.yml @@ -21,7 +21,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - name: Install dependencies run: yarn install --check-files --frozen-lockfile - name: Upgrade dependencies diff --git a/.gitignore b/.gitignore index 1df3781d..7525aee2 100644 --- a/.gitignore +++ b/.gitignore @@ -34,6 +34,7 @@ jspm_packages/ *.rest .vscode **/.DS_Store +!/.projenrc.js /test-reports/ junit.xml /coverage/ @@ -164,4 +165,3 @@ test/integ/onschedule-salesforce-marketing-cloud-to-s3.integ.snapshot/**/tree.js !/.github/workflows/upgrade-cdklabs-projen-project-types-main.yml !/.github/workflows/upgrade-main.yml !/.github/workflows/upgrade-dev-deps-main.yml -!/.projenrc.ts diff --git a/.npmignore b/.npmignore index fdaa448c..7b7315e8 100644 --- a/.npmignore +++ b/.npmignore @@ -37,5 +37,3 @@ test/integ/onevent-salesforce-to-eventbridge.integ.snapshot test/integ/onschedule-s3-to-salesforce.integ.snapshot test/integ/.tmp test/integ/onschedule-salesforce-marketing-cloud-to-s3.integ.snapshot -/.gitattributes -/.projenrc.ts diff --git a/.projen/deps.json b/.projen/deps.json index 82f07c44..a8ea65d8 100644 --- a/.projen/deps.json +++ b/.projen/deps.json @@ -2,11 +2,12 @@ "dependencies": [ { "name": "@types/jest", + "version": "^27", "type": "build" }, { "name": "@types/node", - "version": "^18", + "version": "^16", "type": "build" }, { @@ -46,12 +47,13 @@ "type": "build" }, { - "name": "jest", + "name": "jest-junit", + "version": "^15", "type": "build" }, { - "name": "jest-junit", - "version": "^15", + "name": "jest", + "version": "^27", "type": "build" }, { @@ -72,7 +74,7 @@ }, { "name": "jsii", - "version": "~5.2", + "version": "1.x", "type": "build" }, { @@ -86,6 +88,7 @@ }, { "name": "ts-jest", + "version": "^27", "type": "build" }, { @@ -110,19 +113,29 @@ "version": "latest", "type": "devenv" }, + { + "name": "@types/babel__traverse", + "version": "7.18.2", + "type": "override" + }, + { + "name": "@types/prettier", + "version": "2.6.0", + "type": "override" + }, { "name": "@aws-cdk/aws-glue-alpha", - "version": "2.121.1-alpha.0", + "version": "2.121.0-alpha.0", "type": "peer" }, { "name": "@aws-cdk/aws-redshift-alpha", - "version": "2.121.1-alpha.0", + "version": "2.121.0-alpha.0", "type": "peer" }, { "name": "aws-cdk-lib", - "version": "^2.121.1", + "version": "^2.121.0", "type": "peer" }, { diff --git a/.projen/tasks.json b/.projen/tasks.json index d5e52525..1306ca01 100644 --- a/.projen/tasks.json +++ b/.projen/tasks.json @@ -154,8 +154,7 @@ "description": "Runs eslint against the codebase", "steps": [ { - "exec": "eslint --ext .ts,.tsx --fix --no-error-on-unmatched-pattern $@ src test build-tools projenrc .projenrc.ts", - "receiveArgs": true + "exec": "eslint --ext .ts,.tsx --fix --no-error-on-unmatched-pattern src test build-tools projenrc .projenrc.ts" } ] }, @@ -1331,13 +1330,13 @@ }, "steps": [ { - "exec": "npx npm-check-updates@16 --upgrade --target=minor --peer --dep=dev --filter=@types/jest,@types/node,@typescript-eslint/eslint-plugin,@typescript-eslint/parser,aws-cdk,cdklabs-projen-project-types,esbuild,eslint-import-resolver-typescript,eslint-plugin-import,eslint,jest,jest-junit,jsii-diff,jsii-docgen,jsii-pacmak,jsii-rosetta,projen,standard-version,ts-jest,ts-node,typescript" + "exec": "npx npm-check-updates@16 --upgrade --target=minor --peer --dep=dev --filter=@types/jest,@types/node,@typescript-eslint/eslint-plugin,@typescript-eslint/parser,aws-cdk,cdklabs-projen-project-types,esbuild,eslint-import-resolver-typescript,eslint-plugin-import,eslint,jest-junit,jest,jsii-diff,jsii-docgen,jsii-pacmak,jsii-rosetta,projen,standard-version,ts-jest,ts-node,typescript" }, { "exec": "yarn install --check-files" }, { - "exec": "yarn upgrade @types/jest @types/node @typescript-eslint/eslint-plugin @typescript-eslint/parser aws-cdk cdklabs-projen-project-types esbuild eslint-import-resolver-typescript eslint-plugin-import eslint jest jest-junit jsii-diff jsii-docgen jsii-pacmak jsii-rosetta projen standard-version ts-jest ts-node typescript" + "exec": "yarn upgrade @types/jest @types/node @typescript-eslint/eslint-plugin @typescript-eslint/parser aws-cdk cdklabs-projen-project-types esbuild eslint-import-resolver-typescript eslint-plugin-import eslint jest-junit jest jsii-diff jsii-docgen jsii-pacmak jsii-rosetta projen standard-version ts-jest ts-node typescript" }, { "exec": "npx projen" diff --git a/package.json b/package.json index 1c8a0fb4..4f0ae7f7 100644 --- a/package.json +++ b/package.json @@ -112,16 +112,16 @@ "organization": true }, "devDependencies": { - "@aws-cdk/aws-glue-alpha": "2.121.1-alpha.0", - "@aws-cdk/aws-redshift-alpha": "2.121.1-alpha.0", + "@aws-cdk/aws-glue-alpha": "2.121.0-alpha.0", + "@aws-cdk/aws-redshift-alpha": "2.121.0-alpha.0", "@aws-cdk/integ-runner": "latest", "@aws-cdk/integ-tests-alpha": "latest", "@types/jest": "^27", - "@types/node": "^18", + "@types/node": "^16", "@typescript-eslint/eslint-plugin": "^6", "@typescript-eslint/parser": "^6", "aws-cdk": "^2", - "aws-cdk-lib": "2.121.1", + "aws-cdk-lib": "2.121.0", "cdklabs-projen-project-types": "^0.1.186", "constructs": "10.0.5", "esbuild": "^0.19.11", @@ -130,7 +130,7 @@ "eslint-plugin-import": "^2.29.1", "jest": "^27", "jest-junit": "^15", - "jsii": "~5.2", + "jsii": "1.x", "jsii-diff": "^1.94.0", "jsii-docgen": "^8.0.56", "jsii-pacmak": "^1.94.0", @@ -142,9 +142,9 @@ "typescript": "^5.2.2" }, "peerDependencies": { - "@aws-cdk/aws-glue-alpha": "2.121.1-alpha.0", - "@aws-cdk/aws-redshift-alpha": "2.121.1-alpha.0", - "aws-cdk-lib": "^2.121.1", + "@aws-cdk/aws-glue-alpha": "2.121.0-alpha.0", + "@aws-cdk/aws-redshift-alpha": "2.121.0-alpha.0", + "aws-cdk-lib": "^2.121.0", "constructs": "^10.0.5" }, "dependencies": { @@ -153,13 +153,17 @@ "bundledDependencies": [ "@types/aws-lambda" ], + "resolutions": { + "@types/babel__traverse": "7.18.2", + "@types/prettier": "2.6.0" + }, "keywords": [ "appflow", "aws", "cdk" ], "engines": { - "node": ">= 18.12.0" + "node": ">= 16.13.0" }, "main": "lib/index.js", "license": "Apache-2.0", diff --git a/tsconfig.dev.json b/tsconfig.dev.json index da832d0d..88cc2f2f 100644 --- a/tsconfig.dev.json +++ b/tsconfig.dev.json @@ -26,6 +26,7 @@ "target": "ES2019" }, "include": [ + ".projenrc.js", "src/**/*.ts", "test/**/*.ts", ".projenrc.ts", diff --git a/yarn.lock b/yarn.lock index 8166f198..dfc9f3f1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -30,15 +30,15 @@ resolved "https://registry.yarnpkg.com/@aws-cdk/asset-node-proxy-agent-v6/-/asset-node-proxy-agent-v6-2.0.1.tgz#6dc9b7cdb22ff622a7176141197962360c33e9ac" integrity sha512-DDt4SLdLOwWCjGtltH4VCST7hpOI5DzieuhGZsBpZ+AgJdSI2GCjklCXm0GCTwJG/SolkL5dtQXyUKgg9luBDg== -"@aws-cdk/aws-glue-alpha@2.121.1-alpha.0": - version "2.121.1-alpha.0" - resolved "https://registry.yarnpkg.com/@aws-cdk/aws-glue-alpha/-/aws-glue-alpha-2.121.1-alpha.0.tgz#8c5e6b34ccfd35b7512e84c2e6176e88a1482a80" - integrity sha512-ovZeXXCNBCkRdHEfBCbDYOZ1tTbwlV1Njc1iPwP7aMo4BIMSrRzLF5ir+InwKbnRA1FWACyDGXRakue/fuT4aA== +"@aws-cdk/aws-glue-alpha@2.121.0-alpha.0": + version "2.121.0-alpha.0" + resolved "https://registry.yarnpkg.com/@aws-cdk/aws-glue-alpha/-/aws-glue-alpha-2.121.0-alpha.0.tgz#e045f428c1d2d76b64e00510895e76b58276e6f6" + integrity sha512-AzV6zusygJxPgieynd4567jKwpAxgrq5CL+yNuKdK87ab3OwSkVRGnlJtZ0JT6XmwNi5ckd1ksnyVTECH7kjXg== -"@aws-cdk/aws-redshift-alpha@2.121.1-alpha.0": - version "2.121.1-alpha.0" - resolved "https://registry.yarnpkg.com/@aws-cdk/aws-redshift-alpha/-/aws-redshift-alpha-2.121.1-alpha.0.tgz#21eae9ef3843290919f1e637822b3ab8a74bf1d7" - integrity sha512-PsCtr+IuWoyJgi40iVLCB65kiWOpzI6iG/jlOl9lQkQvDO5Dh19OOtRSTVIoFga6AbcVAVDmhQ/GyEHBWoELZg== +"@aws-cdk/aws-redshift-alpha@2.121.0-alpha.0": + version "2.121.0-alpha.0" + resolved "https://registry.yarnpkg.com/@aws-cdk/aws-redshift-alpha/-/aws-redshift-alpha-2.121.0-alpha.0.tgz#085be93fe8c02a911ef077d9cd0e9ccc2206b7af" + integrity sha512-9bVnTYLgLZMK+nOwFMYAN+9ORAYHTyUwhtST3F5zXw0yh30QYmd2BNUA1BtHifrS7CgYkSntBj+HZ+TFOHZK6w== "@aws-cdk/aws-service-spec@0.0.29": version "0.0.29" @@ -336,7 +336,7 @@ debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.3.3": +"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.3.0", "@babel/types@^7.3.3": version "7.23.6" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.6.tgz#be33fdb151e1f5a56877d704492c240fc71c7ccd" integrity sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg== @@ -911,12 +911,12 @@ "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" -"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": - version "7.20.5" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.5.tgz#7b7502be0aa80cc4ef22978846b983edaafcd4dd" - integrity sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ== +"@types/babel__traverse@*", "@types/babel__traverse@7.18.2", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": + version "7.18.2" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.2.tgz#235bf339d17185bdec25e024ca19cce257cc7309" + integrity sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg== dependencies: - "@babel/types" "^7.20.7" + "@babel/types" "^7.3.0" "@types/glob@^8.0.0": version "8.1.0" @@ -987,22 +987,20 @@ dependencies: undici-types "~5.26.4" -"@types/node@^18": - version "18.19.6" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.6.tgz#537beece2c8ad4d9abdaa3b0f428e601eb57dac8" - integrity sha512-X36s5CXMrrJOs2lQCdDF68apW4Rfx9ixYMawlepwmE4Anezv/AV2LSpKD1Ub8DAc+urp5bk0BGZ6NtmBitfnsg== - dependencies: - undici-types "~5.26.4" +"@types/node@^16": + version "16.18.71" + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.71.tgz#305a955ab99353d4b8a9e9b6b6682ed6cbc186cc" + integrity sha512-ARO+458bNJQeNEFuPyT6W+q9ULotmsQzhV3XABsFSxEvRMUYENcBsNAHWYPlahU+UHa5gCVwyKT1Z3f1Wwr26Q== "@types/normalize-package-data@^2.4.0": version "2.4.4" resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== -"@types/prettier@^2.1.5": - version "2.7.3" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.3.tgz#3e51a17e291d01d17d3fc61422015a933af7a08f" - integrity sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA== +"@types/prettier@2.6.0", "@types/prettier@^2.1.5": + version "2.6.0" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.0.tgz#efcbd41937f9ae7434c714ab698604822d890759" + integrity sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw== "@types/semver@^7.5.0": version "7.5.6" @@ -1354,10 +1352,10 @@ available-typed-arrays@^1.0.5: resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== -aws-cdk-lib@2.121.1: - version "2.121.1" - resolved "https://registry.yarnpkg.com/aws-cdk-lib/-/aws-cdk-lib-2.121.1.tgz#c4c5029a916fdbc9ae8ed4fd39264143d6326322" - integrity sha512-wrOHDDQqVuH2tRTH7p2LaMPVI3V2bqr8X//Qrhy+hOFA04u2MVetQYev+NgMXPjNzU9IGX2wy1Fs9Y/ntq2sQA== +aws-cdk-lib@2.121.0: + version "2.121.0" + resolved "https://registry.yarnpkg.com/aws-cdk-lib/-/aws-cdk-lib-2.121.0.tgz#c2101ac52aad4bda45ab8a5308a4dcb42c8d7c8b" + integrity sha512-WE+Scp4rGHqkNOjYdk9AKrgWTYqTcK1KJJEYiazSx6vbJ3gA1GwPDR9wGjQdT0hUtDtKihLwdwQhMohCEXAyYg== dependencies: "@aws-cdk/asset-awscli-v1" "^2.2.201" "@aws-cdk/asset-kubectl-v20" "^2.1.2" @@ -3800,7 +3798,7 @@ jsii-rosetta@^5.3.3: workerpool "^6.5.1" yargs "^17.7.2" -jsii@1.94.0: +jsii@1.94.0, jsii@1.x: version "1.94.0" resolved "https://registry.yarnpkg.com/jsii/-/jsii-1.94.0.tgz#46dab7b2feee00e3d0316216f551156c1084597c" integrity sha512-20KlKsBZlo7Ti6vfqTpKfZXnT2MKRGfh5bIPrwDODoCQmHNATfPFt1fs5+Wqd7xdrEj+A+sLAtjfHTw6i+sxCw== @@ -3819,25 +3817,6 @@ jsii@1.94.0: typescript "~3.9.10" yargs "^16.2.0" -jsii@~5.2: - version "5.2.44" - resolved "https://registry.yarnpkg.com/jsii/-/jsii-5.2.44.tgz#7a768412f1a28f5f1ff3e92ab5f5b7e7430c3ae1" - integrity sha512-Z7sTqYzQ5yoJU/ie+svjqSzrOF5rl4pW/bojvCb/7MfJ+SaGqhMUQMxQGTfqmSvauME8JoVYqwMH89x6qreJ8A== - dependencies: - "@jsii/check-node" "1.93.0" - "@jsii/spec" "^1.93.0" - case "^1.6.3" - chalk "^4" - downlevel-dts "^0.11.0" - fast-deep-equal "^3.1.3" - log4js "^6.9.1" - semver "^7.5.4" - semver-intersect "^1.5.0" - sort-json "^2.0.1" - spdx-license-list "^6.8.0" - typescript "~5.2" - yargs "^17.7.2" - jsii@~5.3.0: version "5.3.3" resolved "https://registry.yarnpkg.com/jsii/-/jsii-5.3.3.tgz#49e12615543c9e0a6cbd2ed82dae347eb993c10c" @@ -5409,11 +5388,6 @@ typescript@~3.9.10: resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8" integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== -typescript@~5.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.2.2.tgz#5ebb5e5a5b75f085f22bc3f8460fba308310fa78" - integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w== - uglify-js@^3.1.4: version "3.17.4" resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c"