diff --git a/.gitattributes b/.gitattributes index 8749411e..b5ceec6d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3,7 +3,6 @@ *.snap linguist-generated /.eslintrc.json linguist-generated /.gitattributes linguist-generated -/.github/pull_request_template.md linguist-generated /.github/workflows/auto-approve.yml linguist-generated /.github/workflows/automerge.yml linguist-generated /.github/workflows/build.yml linguist-generated diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index 11d479bc..00000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1 +0,0 @@ -Fixes # \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 86897859..38689d50 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,6 +5,11 @@ on: push: branches: - main + paths-ignore: + - .github/ISSUE_TEMPLATE/** + - .github/CODEOWNERS + - .github/dependabot.yml + - .github/**/*.md workflow_dispatch: {} jobs: release: diff --git a/.gitignore b/.gitignore index f76a3d22..2e4f1aca 100644 --- a/.gitignore +++ b/.gitignore @@ -38,7 +38,6 @@ junit.xml /dist/version.txt !/.github/workflows/release.yml !/.github/workflows/upgrade-main.yml -!/.github/pull_request_template.md !/.prettierignore !/.prettierrc.json !/.npmrc diff --git a/.npmignore b/.npmignore index 83fdd38e..dfdc943e 100644 --- a/.npmignore +++ b/.npmignore @@ -21,3 +21,6 @@ dist tsconfig.tsbuildinfo /.eslintrc.json !.jsii +projenrc +/.projenrc.ts +.copywrite.hcl diff --git a/.projen/files.json b/.projen/files.json index cde6ceec..c4e6ea49 100644 --- a/.projen/files.json +++ b/.projen/files.json @@ -2,7 +2,6 @@ "files": [ ".eslintrc.json", ".gitattributes", - ".github/pull_request_template.md", ".github/workflows/auto-approve.yml", ".github/workflows/automerge.yml", ".github/workflows/build.yml", diff --git a/.projenrc.ts b/.projenrc.ts index cddfdd8b..3d56d690 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -30,6 +30,7 @@ const project = new cdk.JsiiProject({ repositoryUrl: "https://github.com/cdktf/cdktf-provider-project.git", authorOrganization: true, licensed: false, // we do supply our own license file with a custom header + pullRequestTemplate: false, peerDeps: ["projen@^0.71.46"], deps: ["change-case", "fs-extra"], devDeps: [ @@ -38,7 +39,6 @@ const project = new cdk.JsiiProject({ "node-fetch@~2", // @TODO this can be removed once we upgrade to Node 18 and use native fetch ], bundledDeps: ["change-case", "fs-extra"], - license: "MPL-2.0", defaultReleaseBranch: "main", releaseToNpm: true, minNodeVersion: "16.14.0", @@ -68,6 +68,10 @@ new AutoApprove(project); new Automerge(project); new UpgradeNode(project); +project.addPackageIgnore("projenrc"); +project.addPackageIgnore("/.projenrc.ts"); +project.addPackageIgnore(".copywrite.hcl"); + // Run copywrite tool to add copyright headers to all files // This is for this repository itself, not for the projects // using this Projen template @@ -84,4 +88,18 @@ Object.entries(githubActionPinnedVersions).forEach(([name, sha]) => { project.github?.actions.set(name, `${name}@${sha}`); }); +const releaseWorkflow = project.tryFindObjectFile( + ".github/workflows/release.yml" +); +releaseWorkflow?.addOverride("on.push", { + branches: ["main"], + "paths-ignore": [ + // don't do a release if the change was only to these files/directories + ".github/ISSUE_TEMPLATE/**", + ".github/CODEOWNERS", + ".github/dependabot.yml", + ".github/**/*.md", + ], +}); + project.synth(); diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 86aa2670..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,408 +0,0 @@ -# Changelog - -All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. - -### [0.2.8](https://github.com/hashicorp/cdktf-provider-project/compare/v0.2.7...v0.2.8) (2021-08-12) - -### [0.2.7](https://github.com/hashicorp/cdktf-provider-project/compare/v0.2.6...v0.2.7) (2021-08-12) - -### [0.2.6](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.2.5...v0.2.6) (2021-08-04) - -### [0.2.5](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.2.4...v0.2.5) (2021-08-03) - -### [0.2.4](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.2.3...v0.2.4) (2021-08-03) - -### [0.2.3](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.2.2...v0.2.3) (2021-08-03) - -### [0.2.2](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.2.1...v0.2.2) (2021-08-02) - -### [0.2.1](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.2.0...v0.2.1) (2021-08-02) - -## [0.2.0](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.110...v0.2.0) (2021-08-02) - - -### ⚠ BREAKING CHANGES - -* Upgrade to cdktf 0.5 -* upgrade to 0.5 - -* Merge pull request #174 from terraform-cdk-providers/upgrade-it ([58e8a6e](https://github.com/terraform-cdk-providers/cdktf-provider-project/commit/58e8a6ee99c20fa2cb118fa0d4fcdbbf41b2bf88)), closes [#174](https://github.com/terraform-cdk-providers/cdktf-provider-project/issues/174) -* BREAKING CHANGE: Upgrade to cdktf 0.5 ([db0201e](https://github.com/terraform-cdk-providers/cdktf-provider-project/commit/db0201e443ef04c7c31f14ee19c4f12a67df879d)) - -### [0.1.110](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.109...v0.1.110) (2021-08-02) - -### [0.1.109](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.108...v0.1.109) (2021-07-27) - -### [0.1.108](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.107...v0.1.108) (2021-07-27) - -### [0.1.107](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.106...v0.1.107) (2021-07-20) - -### [0.1.106](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.105...v0.1.106) (2021-07-20) - -### [0.1.105](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.104...v0.1.105) (2021-07-19) - -### [0.1.104](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.103...v0.1.104) (2021-07-15) - -### [0.1.103](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.102...v0.1.103) (2021-07-13) - -### [0.1.102](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.101...v0.1.102) (2021-07-13) - -### [0.1.101](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.100...v0.1.101) (2021-07-07) - -### [0.1.100](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.99...v0.1.100) (2021-07-06) - -### [0.1.99](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.98...v0.1.99) (2021-07-06) - -### [0.1.98](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.97...v0.1.98) (2021-07-05) - -### [0.1.97](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.96...v0.1.97) (2021-07-01) - -### [0.1.96](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.95...v0.1.96) (2021-06-29) - -### [0.1.95](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.94...v0.1.95) (2021-06-29) - -### [0.1.94](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.93...v0.1.94) (2021-06-22) - -### [0.1.93](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.92...v0.1.93) (2021-06-22) - -### [0.1.92](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.91...v0.1.92) (2021-06-21) - -### [0.1.91](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.90...v0.1.91) (2021-06-18) - -### [0.1.90](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.89...v0.1.90) (2021-06-17) - -### [0.1.89](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.88...v0.1.89) (2021-06-15) - -### [0.1.88](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.87...v0.1.88) (2021-06-15) - -### [0.1.87](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.86...v0.1.87) (2021-06-10) - -### [0.1.86](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.85...v0.1.86) (2021-06-08) - -### [0.1.85](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.84...v0.1.85) (2021-06-08) - -### [0.1.84](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.83...v0.1.84) (2021-06-07) - -### [0.1.83](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.82...v0.1.83) (2021-06-01) - -### [0.1.82](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.81...v0.1.82) (2021-06-01) - -### [0.1.81](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.80...v0.1.81) (2021-05-31) - -### [0.1.80](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.79...v0.1.80) (2021-05-27) - -### [0.1.79](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.78...v0.1.79) (2021-05-27) - -### [0.1.78](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.77...v0.1.78) (2021-05-26) - -### [0.1.77](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.76...v0.1.77) (2021-05-25) - -### [0.1.76](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.75...v0.1.76) (2021-05-25) - -### [0.1.75](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.74...v0.1.75) (2021-05-24) - -### [0.1.74](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.73...v0.1.74) (2021-05-24) - -### [0.1.73](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.72...v0.1.73) (2021-05-18) - -### [0.1.72](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.71...v0.1.72) (2021-05-18) - -### [0.1.71](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.70...v0.1.71) (2021-05-17) - -### [0.1.70](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.69...v0.1.70) (2021-05-13) - -### [0.1.69](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.68...v0.1.69) (2021-05-11) - -### [0.1.68](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.67...v0.1.68) (2021-05-11) - -### [0.1.67](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.66...v0.1.67) (2021-05-10) - -### [0.1.66](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.65...v0.1.66) (2021-05-10) - -### [0.1.65](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.64...v0.1.65) (2021-05-06) - -### [0.1.64](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.63...v0.1.64) (2021-05-05) - -### [0.1.63](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.62...v0.1.63) (2021-05-05) - -### [0.1.62](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.61...v0.1.62) (2021-05-05) - -### [0.1.61](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.60...v0.1.61) (2021-04-28) - -### [0.1.60](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.59...v0.1.60) (2021-04-27) - -### [0.1.59](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.58...v0.1.59) (2021-04-26) - -### [0.1.58](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.57...v0.1.58) (2021-04-21) - -### [0.1.57](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.56...v0.1.57) (2021-04-16) - -### [0.1.56](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.55...v0.1.56) (2021-04-16) - -### [0.1.55](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.54...v0.1.55) (2021-04-15) - -### [0.1.54](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.53...v0.1.54) (2021-04-13) - -### [0.1.53](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.52...v0.1.53) (2021-04-13) - -### [0.1.52](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.51...v0.1.52) (2021-04-13) - -### [0.1.51](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.50...v0.1.51) (2021-04-12) - -### [0.1.50](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.49...v0.1.50) (2021-04-09) - -### [0.1.49](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.48...v0.1.49) (2021-04-08) - -### [0.1.48](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.47...v0.1.48) (2021-04-07) - -### [0.1.47](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.46...v0.1.47) (2021-04-07) - -### [0.1.46](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.45...v0.1.46) (2021-04-07) - -### [0.1.45](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.44...v0.1.45) (2021-04-06) - -### [0.1.44](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.43...v0.1.44) (2021-04-06) - -### [0.1.43](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.42...v0.1.43) (2021-03-30) - -### [0.1.42](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.41...v0.1.42) (2021-03-30) - -### [0.1.41](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.40...v0.1.41) (2021-03-29) - -### [0.1.40](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.39...v0.1.40) (2021-03-29) - -### [0.1.39](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.38...v0.1.39) (2021-03-29) - -### [0.1.38](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.37...v0.1.38) (2021-03-29) - -### [0.1.37](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.36...v0.1.37) (2021-03-29) - -### [0.1.36](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.35...v0.1.36) (2021-03-26) - -### [0.1.35](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.34...v0.1.35) (2021-03-23) - -### [0.1.34](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.33...v0.1.34) (2021-03-23) - -### [0.1.33](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.32...v0.1.33) (2021-03-19) - -### [0.1.32](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.31...v0.1.32) (2021-03-19) - -### [0.1.31](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.30...v0.1.31) (2021-03-18) - -### [0.1.30](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.29...v0.1.30) (2021-03-18) - -### [0.1.29](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.28...v0.1.29) (2021-03-16) - -### [0.1.28](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.27...v0.1.28) (2021-03-16) - -### [0.1.27](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.26...v0.1.27) (2021-03-15) - -### [0.1.26](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.25...v0.1.26) (2021-03-10) - -### [0.1.25](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.23...v0.1.25) (2021-03-10) - -### [0.1.24](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.23...v0.1.24) (2021-03-09) - -### [0.1.23](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.22...v0.1.23) (2021-03-08) - -### [0.1.22](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.20...v0.1.22) (2021-03-05) - -### [0.1.21](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.20...v0.1.21) (2021-03-02) - -### [0.1.20](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.19...v0.1.20) (2021-03-01) - -### [0.1.19](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.18...v0.1.19) (2021-02-24) - -### [0.1.18](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.17...v0.1.18) (2021-02-23) - -### [0.1.17](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.16...v0.1.17) (2021-02-22) - -### [0.1.16](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.15...v0.1.16) (2021-02-19) - -### [0.1.15](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.12...v0.1.15) (2021-02-18) - -### [0.1.14](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.12...v0.1.14) (2021-02-16) - -### [0.1.13](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.12...v0.1.13) (2021-02-15) - -### [0.1.12](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.9...v0.1.12) (2021-02-11) - -### [0.1.11](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.9...v0.1.11) (2021-02-10) - -### [0.1.10](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.9...v0.1.10) (2021-02-09) - -### [0.1.9](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.8...v0.1.9) (2021-02-05) - -### [0.1.8](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.6...v0.1.8) (2021-02-05) - -### [0.1.7](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.6...v0.1.7) (2021-02-02) - -### [0.1.6](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.5...v0.1.6) (2021-02-01) - -### [0.1.5](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.4...v0.1.5) (2021-02-01) - -### [0.1.4](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.3...v0.1.4) (2021-02-01) - -### [0.1.3](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.2...v0.1.3) (2021-01-29) - -### [0.1.2](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.1.1...v0.1.2) (2021-01-29) - -### [0.1.1](https://github.com/terraform-cdk-providers/cdktf-provider-project/compare/v0.0.79...v0.1.1) (2021-01-29) - -### 0.0.79 (2021-01-16) - -### 0.0.78 (2021-01-15) - -### 0.0.77 (2021-01-08) - -### 0.0.76 (2020-12-24) - -### 0.0.75 (2020-12-14) - -### 0.0.74 (2020-12-11) - -### 0.0.73 (2020-12-09) - -### 0.0.72 (2020-12-08) - -### 0.0.71 (2020-12-02) - -### 0.0.70 (2020-12-01) - -### 0.0.69 (2020-11-26) - -### 0.0.68 (2020-11-20) - -### 0.0.67 (2020-11-18) - -### 0.0.66 (2020-11-09) - -### 0.0.65 (2020-11-05) - -### 0.0.64 (2020-11-03) - -### 0.0.63 (2020-10-29) - -### 0.0.62 (2020-10-27) - -### 0.0.61 (2020-10-26) - -### 0.0.60 (2020-10-26) - -### 0.0.59 (2020-10-22) - -### 0.0.58 (2020-10-21) - -### 0.0.57 (2020-10-20) - -### 0.0.56 (2020-10-19) - -### 0.0.55 (2020-10-12) - -### 0.0.54 (2020-10-09) - -### 0.0.53 (2020-10-07) - -### 0.0.52 (2020-10-06) - -### 0.0.51 (2020-09-30) - -### 0.0.50 (2020-09-28) - -### 0.0.49 (2020-09-21) - -### 0.0.48 (2020-09-17) - -### 0.0.47 (2020-09-16) - -### 0.0.46 (2020-09-14) - -### 0.0.45 (2020-09-11) - -### 0.0.44 (2020-09-09) - -### 0.0.43 (2020-09-03) - -### 0.0.42 (2020-09-02) - -### 0.0.41 (2020-09-01) - -### 0.0.40 (2020-08-27) - -### 0.0.39 (2020-08-24) - -### 0.0.38 (2020-08-21) - -### 0.0.37 (2020-08-20) - -### 0.0.36 (2020-08-20) - -### 0.0.35 (2020-08-20) - -### 0.0.34 (2020-08-20) - -### 0.0.33 (2020-08-19) - -### 0.0.32 (2020-08-19) - -### 0.0.31 (2020-08-19) - -### 0.0.30 (2020-08-18) - -### 0.0.29 (2020-08-17) - -### 0.0.28 (2020-08-17) - -### 0.0.27 (2020-08-17) - -### 0.0.26 (2020-08-17) - -### 0.0.25 (2020-08-16) - -### 0.0.24 (2020-08-15) - -### 0.0.23 (2020-08-15) - -### 0.0.22 (2020-08-15) - -### 0.0.21 (2020-08-11) - -### 0.0.20 (2020-08-11) - -### 0.0.19 (2020-08-11) - -### 0.0.18 (2020-08-11) - -### 0.0.17 (2020-08-11) - -### 0.0.16 (2020-08-10) - -### 0.0.15 (2020-08-10) - -### 0.0.14 (2020-08-10) - -### 0.0.13 (2020-08-09) - -### 0.0.12 (2020-08-05) - -### 0.0.11 (2020-08-05) - -### 0.0.10 (2020-08-05) - -### 0.0.9 (2020-08-05) - -### 0.0.8 (2020-08-05) - -### 0.0.7 (2020-08-04) - -### 0.0.6 (2020-08-04) - -### 0.0.5 (2020-08-04) - -### 0.0.4 (2020-08-04) - -### 0.0.3 (2020-08-04) - -### 0.0.2 (2020-08-04) - -### 0.0.1 (2020-08-04) diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index ac5eb3b5..00000000 --- a/tsconfig.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "compilerOptions": { - "outDir": "lib", - "rootDir": "src", - "declarationMap": false, - "inlineSourceMap": true, - "inlineSources": true, - "alwaysStrict": true, - "charset": "utf8", - "declaration": true, - "experimentalDecorators": true, - "incremental": true, - "lib": [ - "es2020" - ], - "module": "CommonJS", - "newLine": "lf", - "noEmitOnError": true, - "noFallthroughCasesInSwitch": true, - "noImplicitAny": true, - "noImplicitReturns": true, - "noImplicitThis": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "resolveJsonModule": true, - "skipLibCheck": true, - "strict": true, - "strictNullChecks": true, - "strictPropertyInitialization": true, - "stripInternal": false, - "target": "ES2020", - "composite": false, - "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo" - }, - "include": [ - "src/**/*.ts" - ], - "exclude": [ - "node_modules" - ], - "_generated_by_jsii_": "Generated by jsii - safe to delete, and ideally should be in .gitignore" -} diff --git a/version.json b/version.json deleted file mode 100644 index 9379a31b..00000000 --- a/version.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "version": "0.2.8" -}