Skip to content

Commit

Permalink
chore(deps): update dependency @octokit/tsconfig to v2 (#308)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@octokit/tsconfig](https://togithub.com/octokit/tsconfig) | [`^1.0.2`
->
`^2.0.0`](https://renovatebot.com/diffs/npm/@octokit%2ftsconfig/1.0.2/2.0.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@octokit%2ftsconfig/2.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@octokit%2ftsconfig/2.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@octokit%2ftsconfig/2.0.0/compatibility-slim/1.0.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@octokit%2ftsconfig/2.0.0/confidence-slim/1.0.2)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>octokit/tsconfig</summary>

###
[`v2.0.0`](https://togithub.com/octokit/tsconfig/releases/tag/v2.0.0)

[Compare
Source](https://togithub.com/octokit/tsconfig/compare/v1.0.2...v2.0.0)

##### Features

- add `verbatimModuleSyntax` compiler option
([#&#8203;15](https://togithub.com/octokit/tsconfig/issues/15))
([6341002](https://togithub.com/octokit/tsconfig/commit/63410020586909187c451e9a2dd7a3aff50c12f2))

##### BREAKING CHANGES

- this will throw errors during Typescript compilation when types are
not imported using the `import type` keywords.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/octokit/rest.js).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Keegan Campbell <me@kfcampbell.com>
  • Loading branch information
renovate[bot] and kfcampbell committed Jun 15, 2023
1 parent 393ca57 commit 615edf6
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 10 deletions.
40 changes: 33 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions package.json
Expand Up @@ -42,7 +42,7 @@
"@octokit/auth-app": "^4.0.13",
"@octokit/fixtures-server": "^7.0.0",
"@octokit/request": "^6.2.5",
"@octokit/tsconfig": "^1.0.2",
"@octokit/tsconfig": "^2.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"esbuild": "^0.18.0",
Expand All @@ -67,7 +67,14 @@
},
"license": "MIT",
"jest": {
"preset": "ts-jest",
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"tsconfig": "test/tsconfig.test.json"
}
]
},
"testPathIgnorePatterns": [
"/docs/"
],
Expand Down
9 changes: 9 additions & 0 deletions test/tsconfig.test.json
@@ -0,0 +1,9 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"emitDeclarationOnly": false,
"noEmit": true,
"verbatimModuleSyntax": false
},
"include": ["src/**/*"]
}
4 changes: 3 additions & 1 deletion tsconfig.json
Expand Up @@ -7,5 +7,7 @@
"emitDeclarationOnly": true,
"sourceMap": true
},
"include": ["src/**/*"]
"include": [
"src/**/*"
]
}

0 comments on commit 615edf6

Please sign in to comment.