Skip to content

Commit

Permalink
ci: add body to releases
Browse files Browse the repository at this point in the history
  • Loading branch information
posva committed Apr 30, 2020
1 parent 6d20c2b commit 753ca96
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/github-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ jobs:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
prerelease: true
body: |
Please refer to [CHANGELOG.md](https://github.com/vuejs/vue-router-next/blob/master/CHANGELOG.md) for details.
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ export {
} from './matcher/pathParserRanker'

export {
_RouteLocationBase,
_RouteRecordBase,
RouteLocationRaw,
RouteLocation,
RouteLocationNormalized,
Expand Down
6 changes: 4 additions & 2 deletions test-dts/createRouter.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import { createRouter, createWebHistory } from './index'
import { createApp } from 'vue'
import { createApp, defineComponent } from 'vue'

const component = defineComponent({})

const router = createRouter({
history: createWebHistory(),
strict: true,
routes: [],
routes: [{ path: '/', component }],
parseQuery: search => ({}),
stringifyQuery: query => '',
end: true,
Expand Down

0 comments on commit 753ca96

Please sign in to comment.