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/types.ts
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v9.3.1
Choose a base ref
...
head repository: octokit/types.ts
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v9.3.2
Choose a head ref
  • 3 commits
  • 10 files changed
  • 4 contributors

Commits on Jun 11, 2023

  1. Copy the full SHA
    e194847 View commit details

Commits on Jun 12, 2023

  1. build(deps): lock file maintenance

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

Commits on Jun 13, 2023

  1. fix(build): use typescript to produce declaration files (#550)

    Co-authored-by: wolfy1339 <4595477+wolfy1339@users.noreply.github.com>
    kfcampbell and wolfy1339 authored Jun 13, 2023
    Copy the full SHA
    9953e34 View commit details
Showing with 6,153 additions and 18,347 deletions.
  1. +2 −1 .github/workflows/test.yml
  2. +1 −1 .github/workflows/update.yml
  3. +6,098 −18,310 package-lock.json
  4. +2 −27 package.json
  5. +34 −0 scripts/build.mjs
  6. +2 −0 scripts/update-endpoints/templates/endpoints.ts.template
  7. +2 −0 src/generated/Endpoints.ts
  8. +3 −3 test.ts
  9. +8 −5 tsconfig.json
  10. +1 −0 tsconfig.test.json
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -15,7 +15,8 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: npm
- run: npm ci
- run: npm run build
- run: npm test
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: "lts/*"
cache: npm
- run: git checkout routes-update || true
- run: npm install @octokit/openapi-types@latest
Loading