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: nuxt/typescript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @nuxt/types@0.5.2
Choose a base ref
...
head repository: nuxt/typescript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @nuxt/types@0.5.3
Choose a head ref
  • 2 commits
  • 7 files changed
  • 2 contributors

Commits on Dec 2, 2019

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0d50ef2 View commit details
  2. chore(release): publish

     - @nuxt/types@0.5.3
     - @nuxt/typescript-build@0.3.10
     - @nuxt/typescript-runtime@0.2.10
    kevinmarrec committed Dec 2, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d887b73 View commit details
11 changes: 11 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.5.3](https://github.com/nuxt/typescript/compare/@nuxt/types@0.5.2...@nuxt/types@0.5.3) (2019-12-02)


### Bug Fixes

* **types:** use connect type for server middleware ([#227](https://github.com/nuxt/typescript/issues/227)) ([0d50ef2](https://github.com/nuxt/typescript/commit/0d50ef27201aca9c749331563dbd6ad0bbf1e5c3)), closes [#183](https://github.com/nuxt/typescript/issues/183)





## [0.5.2](https://github.com/nuxt/typescript/compare/@nuxt/types@0.5.1...@nuxt/types@0.5.2) (2019-12-02)


4 changes: 2 additions & 2 deletions packages/types/config/server-middleware.d.ts
Original file line number Diff line number Diff line change
@@ -3,8 +3,8 @@
* Documentation: https://nuxtjs.org/api/configuration-servermiddleware
*/

import { RequestHandler } from 'express'
import { NextHandleFunction } from 'connect'

export type ServerMiddleware = RequestHandler
export type ServerMiddleware = NextHandleFunction

export type NuxtConfigurationServerMiddleware = string | { path: string, prefix?: boolean, handler: string | ServerMiddleware } | ServerMiddleware
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxt/types",
"version": "0.5.2",
"version": "0.5.3",
"description": "Nuxt.js types",
"repository": "nuxt/typescript",
"license": "MIT",
8 changes: 8 additions & 0 deletions packages/typescript-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.3.10](https://github.com/nuxt/typescript/compare/@nuxt/typescript-build@0.3.9...@nuxt/typescript-build@0.3.10) (2019-12-02)

**Note:** Version bump only for package @nuxt/typescript-build





## [0.3.9](https://github.com/nuxt/typescript/compare/@nuxt/typescript-build@0.3.8...@nuxt/typescript-build@0.3.9) (2019-12-02)

**Note:** Version bump only for package @nuxt/typescript-build
4 changes: 2 additions & 2 deletions packages/typescript-build/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxt/typescript-build",
"version": "0.3.9",
"version": "0.3.10",
"description": "Nuxt.js TypeScript support",
"repository": "nuxt/typescript",
"license": "MIT",
@@ -15,7 +15,7 @@
"compile": "tsc"
},
"dependencies": {
"@nuxt/types": "0.5.2",
"@nuxt/types": "0.5.3",
"consola": "^2.11.0",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"ts-loader": "^6.2.1",
8 changes: 8 additions & 0 deletions packages/typescript-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.2.10](https://github.com/nuxt/typescript/compare/@nuxt/typescript-runtime@0.2.9...@nuxt/typescript-runtime@0.2.10) (2019-12-02)

**Note:** Version bump only for package @nuxt/typescript-runtime





## [0.2.9](https://github.com/nuxt/typescript/compare/@nuxt/typescript-runtime@0.2.8...@nuxt/typescript-runtime@0.2.9) (2019-12-02)

**Note:** Version bump only for package @nuxt/typescript-runtime
4 changes: 2 additions & 2 deletions packages/typescript-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxt/typescript-runtime",
"version": "0.2.9",
"version": "0.2.10",
"description": "Nuxt.js TypeScript Runtime support",
"repository": "nuxt/typescript",
"license": "MIT",
@@ -19,7 +19,7 @@
"compile": "tsc"
},
"dependencies": {
"@nuxt/types": "0.5.2",
"@nuxt/types": "0.5.3",
"ts-node": "^8.5.4",
"typescript": "~3.6"
},