Skip to content

Commit f2270ee

Browse files
author
Relief Melone
committed
Feature - Add ComponentInternalInstance interface to exports
- Added ComponentInternalInstance to exports - Version bump to rc7 - Updated rollup-plugin-typescript2 to v0.30.0 - Added yarn to dev dependencies - Updated tslib to 2.2.0 updated tslib to 2.2.0
1 parent 7955e28 commit f2270ee

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/composition-api",
3-
"version": "1.0.0-rc.6",
3+
"version": "1.0.0-rc.7",
44
"description": "Provide logic composition capabilities for Vue.",
55
"keywords": [
66
"vue",
@@ -60,18 +60,19 @@
6060
"rollup": "^2.39.0",
6161
"rollup-plugin-dts": "^2.0.1",
6262
"rollup-plugin-terser": "^7.0.2",
63-
"rollup-plugin-typescript2": "^0.29.0",
63+
"rollup-plugin-typescript2": "^0.30.0",
6464
"ts-jest": "^26.5.1",
6565
"typescript": "^4.1.5",
6666
"vue": "^2.6.12",
6767
"vue-router": "^3.5.1",
68-
"vue-server-renderer": "^2.6.12"
68+
"vue-server-renderer": "^2.6.12",
69+
"yarn": "^1.22.10"
6970
},
7071
"peerDependencies": {
7172
"vue": ">= 2.5 < 3"
7273
},
7374
"dependencies": {
74-
"tslib": "^2.1.0"
75+
"tslib": "^2.2.0"
7576
},
7677
"husky": {
7778
"hooks": {

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const version = __VERSION__
66

77
export * from './apis'
88
export * from './component'
9-
export { getCurrentInstance } from './runtimeContext'
9+
export { getCurrentInstance, ComponentInternalInstance } from './runtimeContext'
1010

1111
export default Plugin
1212

0 commit comments

Comments
 (0)