Skip to content

Commit af37ba5

Browse files
committed
Merge branch 'next'
2 parents 42104aa + f4953bd commit af37ba5

File tree

4 files changed

+26
-16
lines changed

4 files changed

+26
-16
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<a name="1.0.1"></a>
2+
## [1.0.1](https://github.com/vuejs/composition-api/compare/v1.0.0...v1.0.1) (2021-07-16)
3+
4+
5+
16
<a name="1.0.0"></a>
27
# [1.0.0](https://github.com/vuejs/composition-api/compare/v1.0.0-rc.14...v1.0.0) (2021-07-15)
38

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Include `@vue/composition-api` after Vue and it will install itself automaticall
4141
<!--cdn-links-start-->
4242
```html
4343
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
44-
<script src="https://cdn.jsdelivr.net/npm/@vue/[email protected].0"></script>
44+
<script src="https://cdn.jsdelivr.net/npm/@vue/[email protected].1"></script>
4545
```
4646
<!--cdn-links-end-->
4747

README.zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import { ref, reactive } from '@vue/composition-api'
4040
<!--cdn-links-start-->
4141
```html
4242
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
43-
<script src="https://cdn.jsdelivr.net/npm/@vue/[email protected].0"></script>
43+
<script src="https://cdn.jsdelivr.net/npm/@vue/[email protected].1"></script>
4444
```
4545
<!--cdn-links-end-->
4646

package.json

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,26 @@
11
{
22
"name": "@vue/composition-api",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Provide logic composition capabilities for Vue.",
55
"keywords": [
66
"vue",
7-
"composition-api",
8-
"function-api"
7+
"composition-api"
98
],
109
"repository": {
1110
"type": "git",
1211
"url": "git+https://github.com/vuejs/composition-api.git"
1312
},
14-
"main": "index.js",
15-
"module": "dist/vue-composition-api.esm.js",
16-
"unpkg": "dist/vue-composition-api.prod.js",
17-
"jsdelivr": "dist/vue-composition-api.prod.js",
18-
"typings": "dist/index.d.ts",
13+
"main": "./index.js",
14+
"module": "./dist/vue-composition-api.esm.js",
15+
"unpkg": "./dist/vue-composition-api.prod.js",
16+
"jsdelivr": "./dist/vue-composition-api.prod.js",
17+
"types": "./dist/index.d.ts",
18+
"exports": {
19+
".": {
20+
"import": "./dist/vue-composition-api.esm.js",
21+
"require": "./index.js"
22+
}
23+
},
1924
"author": {
2025
"name": "liximomo",
2126
"email": "[email protected]"
@@ -43,6 +48,12 @@
4348
"url": "https://github.com/vuejs/composition-api/issues"
4449
},
4550
"homepage": "https://github.com/vuejs/composition-api#readme",
51+
"peerDependencies": {
52+
"vue": ">= 2.5 < 3"
53+
},
54+
"dependencies": {
55+
"tslib": "^2.3.0"
56+
},
4657
"devDependencies": {
4758
"@rollup/plugin-node-resolve": "^13.0.0",
4859
"@rollup/plugin-replace": "^2.4.2",
@@ -67,12 +78,6 @@
6778
"vue-router": "^3.5.2",
6879
"vue-server-renderer": "^2.6.14"
6980
},
70-
"peerDependencies": {
71-
"vue": ">= 2.5 < 3"
72-
},
73-
"dependencies": {
74-
"tslib": "^2.3.0"
75-
},
7681
"husky": {
7782
"hooks": {
7883
"pre-commit": "lint-staged"

0 commit comments

Comments
 (0)