Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: octokit/tsconfig
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.2
Choose a base ref
...
head repository: octokit/tsconfig
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.0
Choose a head ref
  • 18 commits
  • 5 files changed
  • 4 contributors

Commits on Mar 5, 2021

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    104b85d View commit details

Commits on Jul 18, 2021

  1. Copy the full SHA
    2c07bbd View commit details

Commits on Sep 17, 2021

  1. Copy the full SHA
    3b3fbbe View commit details
  2. Copy the full SHA
    242d58c View commit details
  3. Copy the full SHA
    e6f49e0 View commit details

Commits on Jun 23, 2022

  1. ci(action): update actions/setup-node action to v3 (#11)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jun 23, 2022
    Copy the full SHA
    e3e7a7e View commit details
  2. ci(action): update actions/checkout action to v3 (#10)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jun 23, 2022
    Copy the full SHA
    e247cd3 View commit details

Commits on Jul 7, 2022

  1. ci(action): pin dependencies (#12)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 7, 2022
    Copy the full SHA
    d0fd7d7 View commit details

Commits on Jul 11, 2022

  1. ci(action): update actions/setup-node digest to 5b949b5 (#13)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 11, 2022
    Copy the full SHA
    8c0a813 View commit details

Commits on Jul 14, 2022

  1. ci(action): update actions/setup-node digest to 2fddd88 (#14)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jul 14, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d2ebf64 View commit details

Commits on Sep 8, 2022

  1. build: renovate setup

    gr2m committed Sep 8, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    feb87fe View commit details
  2. Copy the full SHA
    0d70e8e View commit details

Commits on Sep 27, 2022

  1. Copy the full SHA
    e1bc4ba View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    246ff4b View commit details
  3. Copy the full SHA
    c400882 View commit details
  4. Copy the full SHA
    6c7035a View commit details

Commits on Jan 8, 2023

  1. Copy the full SHA
    3db66b2 View commit details

Commits on Jun 6, 2023

  1. feat: add verbatimModuleSyntax compiler option (#15)

    BREAKING CHANGE: this will throw errors during Typescript compilation when types are not imported using the `import type` keywords.
    kfcampbell authored Jun 6, 2023
    Copy the full SHA
    6341002 View commit details
Showing with 22 additions and 18 deletions.
  1. +5 −0 .github/renovate.json
  2. +5 −5 .github/workflows/release.yml
  3. +9 −6 .github/workflows/test.yml
  4. +1 −6 package.json
  5. +2 −1 tsconfig.json
5 changes: 5 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": [
"github>octokit/.github"
]
}
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: Release
on:
"on":
push:
branches:
- main

jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "12.x"
node-version: lts/*
cache: npm
- run: npm ci
- run: npx semantic-release
env:
15 changes: 9 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
name: Test
on:
"on":
push:
branches:
- main
pull_request:
types: [opened, synchronize]

types:
- opened
- synchronize
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12
node-version: 16
cache: npm
- run: npm ci
- run: npm test
7 changes: 1 addition & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -12,17 +12,12 @@
"files": [
"tsconfig.json"
],
"repository": "https://github.com/octokit/tsconfig",
"repository": "github:octokit/tsconfig",
"author": "Gregor Martynus (https://dev.to/gr2m)",
"license": "MIT",
"release": {
"branches": [
"main"
]
},
"renovate": {
"extends": [
"github>octokit/.github"
]
}
}
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@
"noUnusedParameters": true,
"strict": true,
"target": "es2020",
"resolveJsonModule": true
"resolveJsonModule": true,
"verbatimModuleSyntax": true
}
}