From b7ef5f6b76f1300b5fa06026efa4748856d65e1c Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 12 Oct 2021 00:03:53 +0000 Subject: [PATCH] chore(deps): upgrade dependencies Upgrades project dependencies. See details in [workflow run]. [Workflow Run]: https://github.com/cdklabs/jsii-release/actions/runs/1331015638 ------ *Automatically created by projen via the "upgrade-master" workflow* Signed-off-by: github-actions --- .eslintrc.json | 4 +-- .gitattributes | 3 +- .gitignore | 3 +- .npmignore | 3 +- .projen/tasks.json | 2 +- package.json | 4 +-- tsconfig.eslint.json => tsconfig.dev.json | 1 + tsconfig.jest.json | 35 ----------------------- tsconfig.json | 1 + yarn.lock | 27 ++++++++--------- 10 files changed, 24 insertions(+), 59 deletions(-) rename tsconfig.eslint.json => tsconfig.dev.json (96%) delete mode 100644 tsconfig.jest.json diff --git a/.eslintrc.json b/.eslintrc.json index af1765b5..b6a3af9c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -12,7 +12,7 @@ "parserOptions": { "ecmaVersion": 2018, "sourceType": "module", - "project": "./tsconfig.eslint.json" + "project": "./tsconfig.dev.json" }, "extends": [ "plugin:import/typescript" @@ -27,7 +27,7 @@ "import/resolver": { "node": {}, "typescript": { - "project": "./tsconfig.eslint.json" + "project": "./tsconfig.dev.json" } } }, diff --git a/.gitattributes b/.gitattributes index c421edd0..5cbb2132 100644 --- a/.gitattributes +++ b/.gitattributes @@ -17,7 +17,6 @@ /.projen/tasks.json linguist-generated /LICENSE linguist-generated /package.json linguist-generated -/tsconfig.eslint.json linguist-generated -/tsconfig.jest.json linguist-generated +/tsconfig.dev.json linguist-generated /tsconfig.json linguist-generated /yarn.lock linguist-generated \ No newline at end of file diff --git a/.gitignore b/.gitignore index dba7b2cb..e6599eff 100644 --- a/.gitignore +++ b/.gitignore @@ -41,11 +41,10 @@ junit.xml !/.github/pull_request_template.md !/test/ !/tsconfig.json +!/tsconfig.dev.json !/src/ /lib /dist/ -!/tsconfig.jest.json !/.eslintrc.json -!/tsconfig.eslint.json !/.github/workflows/release.yml !/.github/workflows/upgrade-master.yml diff --git a/.npmignore b/.npmignore index f8881425..77227ac0 100644 --- a/.npmignore +++ b/.npmignore @@ -7,6 +7,7 @@ junit.xml /dist/version.txt /.mergify.yml /test/ +/tsconfig.dev.json /src/ !/lib/ !/lib/**/*.js @@ -18,6 +19,4 @@ dist /.idea/ /.projenrc.js tsconfig.tsbuildinfo -/tsconfig.jest.json /.eslintrc.json -/tsconfig.eslint.json diff --git a/.projen/tasks.json b/.projen/tasks.json index a9d3f969..65d46ddd 100644 --- a/.projen/tasks.json +++ b/.projen/tasks.json @@ -46,7 +46,7 @@ "description": "compiles the test code", "steps": [ { - "exec": "tsc --noEmit --project tsconfig.jest.json" + "exec": "tsc --noEmit --project tsconfig.dev.json" } ] }, diff --git a/package.json b/package.json index 05bb66db..58ac44bc 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "jest-junit": "^12", "json-schema": "^0.3.0", "npm-check-updates": "^11", - "projen": "^0.29.17", + "projen": "^0.30.0", "standard-version": "^9", "ts-jest": "^26.5.6", "typescript": "^3.9.10" @@ -104,7 +104,7 @@ "preset": "ts-jest", "globals": { "ts-jest": { - "tsconfig": "tsconfig.jest.json" + "tsconfig": "tsconfig.dev.json" } } }, diff --git a/tsconfig.eslint.json b/tsconfig.dev.json similarity index 96% rename from tsconfig.eslint.json rename to tsconfig.dev.json index 00655d0b..2e29dbaa 100644 --- a/tsconfig.eslint.json +++ b/tsconfig.dev.json @@ -2,6 +2,7 @@ "compilerOptions": { "alwaysStrict": true, "declaration": true, + "esModuleInterop": true, "experimentalDecorators": true, "inlineSourceMap": true, "inlineSources": true, diff --git a/tsconfig.jest.json b/tsconfig.jest.json deleted file mode 100644 index 00655d0b..00000000 --- a/tsconfig.jest.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "compilerOptions": { - "alwaysStrict": true, - "declaration": true, - "experimentalDecorators": true, - "inlineSourceMap": true, - "inlineSources": true, - "lib": [ - "es2019" - ], - "module": "CommonJS", - "noEmitOnError": false, - "noFallthroughCasesInSwitch": true, - "noImplicitAny": true, - "noImplicitReturns": true, - "noImplicitThis": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "resolveJsonModule": true, - "strict": true, - "strictNullChecks": true, - "strictPropertyInitialization": true, - "stripInternal": true, - "target": "ES2019" - }, - "include": [ - ".projenrc.js", - "src/**/*.ts", - "test/**/*.ts" - ], - "exclude": [ - "node_modules" - ], - "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"." -} diff --git a/tsconfig.json b/tsconfig.json index 77c475f9..9ffbeed6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,6 +4,7 @@ "outDir": "lib", "alwaysStrict": true, "declaration": true, + "esModuleInterop": true, "experimentalDecorators": true, "inlineSourceMap": true, "inlineSources": true, diff --git a/yarn.lock b/yarn.lock index 248a84e9..e2edf738 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2098,9 +2098,9 @@ ecc-jsbn@~0.1.1: safer-buffer "^2.1.0" electron-to-chromium@^1.3.857: - version "1.3.864" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.864.tgz#6a993bcc196a2b8b3df84d28d5d4dd912393885f" - integrity sha512-v4rbad8GO6/yVI92WOeU9Wgxc4NA0n4f6P1FvZTY+jyY7JHEhw3bduYu60v3Q1h81Cg6eo4ApZrFPuycwd5hGw== + version "1.3.865" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.865.tgz#fae7325066595d4ab98e21533b2c276b103c3138" + integrity sha512-okGcCKfihgGlaROMFNPQ6eaU3bk9Xa68rLYSnVD2PyIqM5B/vyQoXCpB3p1HI3AXio097ROVBlSO4JZVilUWuA== emittery@^0.7.1: version "0.7.2" @@ -2242,11 +2242,12 @@ eslint-import-resolver-typescript@^2.5.0: tsconfig-paths "^3.9.0" eslint-module-utils@^2.6.2: - version "2.6.2" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz#94e5540dd15fe1522e8ffa3ec8db3b7fa7e7a534" - integrity sha512-QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q== + version "2.7.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.0.tgz#9e97c12688113401259b39d960e6a1f09f966435" + integrity sha512-hqSE88MmHl3ru9SYvDyGrlo0JwROlf9fiEMplEV7j/EAuq9iSlIlyCFbBT6pdULQBSnBYtYKiMLps+hKkyP7Gg== dependencies: debug "^3.2.7" + find-up "^2.1.0" pkg-dir "^2.0.0" eslint-plugin-import@^2.24.2: @@ -3512,9 +3513,9 @@ isstream@~0.1.2: integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= istanbul-lib-coverage@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" - integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== + version "3.0.2" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.2.tgz#36786d4d82aad2ea5911007e255e2da6b5f80d86" + integrity sha512-o5+eTUYzCJ11/+JhW5/FUCdfsdoYVdQ/8I/OveE2XsjehYn5DdeSnNQAbjYaO8gQ6hvGTN6GM6ddQqpTVG5j8g== istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: version "4.0.3" @@ -5180,10 +5181,10 @@ progress@^2.0.0, progress@^2.0.3: resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -projen@^0.29.17: - version "0.29.17" - resolved "https://registry.yarnpkg.com/projen/-/projen-0.29.17.tgz#19622be20aff044f7648dfaecea2ee86a914a26f" - integrity sha512-BjPur+KOh8Tqbvhp/+FOfONWXP+i7nB+o0g64eYhlJYvpGw85lGGs3boFZJIC8ZFuzEG1hMx5+YxPp8M5U/hcA== +projen@^0.30.0: + version "0.30.0" + resolved "https://registry.yarnpkg.com/projen/-/projen-0.30.0.tgz#b039728fb38fd8bf6a3ecc1cbbd73ebd50584fdc" + integrity sha512-jL7klOQXgAYNqqhkznfeAbZUF21OpVvbcZnGA8fXEVuzrQQ9NKxwxzslMyyTJEuMlQbj2DLRJEbtz/lGLmQ2Tw== dependencies: "@iarna/toml" "^2.2.5" chalk "^4.1.2"