Skip to content

Commit 2fea76e

Browse files
committed
release: v1.0.0-beta.21
1 parent f1aac0d commit 2fea76e

File tree

7 files changed

+37
-27
lines changed

7 files changed

+37
-27
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# [1.0.0-beta.21](https://github.com/pikax/vue-composable/compare/v1.0.0-beta.20...v1.0.0-beta.21) (2021-03-27)
2+
3+
### Bug Fixes
4+
5+
- **usePromise:** last promise would never be mark as complete ([bd03e00](https://github.com/pikax/vue-composable/commit/bd03e0098f2ee2c38f4791856e90e6e1ebed54ef))
6+
- import.meta SSR ([aafc3e1](https://github.com/pikax/vue-composable/commit/aafc3e1ef6e7d9e1d364c6ed955bf67675f23362))
7+
8+
### Features
9+
10+
- **useVModel:** Set to throw error if current instance is undefined ([#819](https://github.com/pikax/vue-composable/issues/819)) ([f352cf5](https://github.com/pikax/vue-composable/commit/f352cf5c0df711856e1ebfbb45c0fd82223b927b))
11+
12+
# [1.0.0-beta.21](https://github.com/pikax/vue-composable/compare/v1.0.0-beta.20...v1.0.0-beta.21) (2021-03-27)
13+
14+
### Bug Fixes
15+
16+
- **usePromise:** last promise would never be mark as complete ([bd03e00](https://github.com/pikax/vue-composable/commit/bd03e0098f2ee2c38f4791856e90e6e1ebed54ef))
17+
- import.meta SSR ([aafc3e1](https://github.com/pikax/vue-composable/commit/aafc3e1ef6e7d9e1d364c6ed955bf67675f23362))
18+
19+
### Features
20+
21+
- **useVModel:** Set to throw error if current instance is undefined ([#819](https://github.com/pikax/vue-composable/issues/819)) ([f352cf5](https://github.com/pikax/vue-composable/commit/f352cf5c0df711856e1ebfbb45c0fd82223b927b))
22+
123
# [1.0.0-beta.20](https://github.com/pikax/vue-composable/compare/v1.0.0-beta.19...v1.0.0-beta.20) (2021-03-06)
224

325
### Bug Fixes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-beta.20",
2+
"version": "1.0.0-beta.21",
33
"name": "vue-composable-monorepo",
44
"workspaces": [
55
"packages/*"

packages/axios/package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-composable/axios",
3-
"version": "1.0.0-beta.20",
3+
"version": "1.0.0-beta.21",
44
"description": "@vue-composable/axios",
55
"main": "index.js",
66
"module": "dist/axios.esm-bundler.js",
@@ -45,7 +45,7 @@
4545
"vue-composable-axios-fix": "./scripts/postinstall.js"
4646
},
4747
"dependencies": {
48-
"vue-composable": "^1.0.0-beta.20"
48+
"vue-composable": "^1.0.0-beta.21"
4949
},
5050
"peerDependencies2": {
5151
"@vue/composition-api": "^1.0.0-beta.14",
@@ -60,9 +60,5 @@
6060
"@types/node": "^14.14.36",
6161
"@vue/runtime-core": "^3.0.7",
6262
"typescript": "^4.2.3"
63-
},
64-
"peerDependencies": {
65-
"@vue/runtime-core": "^3.0.0",
66-
"axios": "^0.22.0"
6763
}
68-
}
64+
}

packages/cookie/package.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-composable/cookie",
3-
"version": "1.0.0-beta.20",
3+
"version": "1.0.0-beta.21",
44
"description": "@vue-composable/cookie",
55
"main": "index.js",
66
"module": "dist/cookie.esm-bundler.js",
@@ -45,7 +45,7 @@
4545
"vue-composable-cookie-fix": "./scripts/postinstall.js"
4646
},
4747
"dependencies": {
48-
"vue-composable": "^1.0.0-beta.20"
48+
"vue-composable": "^1.0.0-beta.21"
4949
},
5050
"peerDependencies2": {
5151
"@vue/composition-api": "^1.0.0-beta.14",
@@ -62,10 +62,5 @@
6262
"@types/node": "^14.14.36",
6363
"@vue/runtime-core": "^3.0.7",
6464
"typescript": "^4.2.3"
65-
},
66-
"peerDependencies": {
67-
"@vue/runtime-core": "^3.0.0",
68-
"@types/js-cookie": "^2.2.6",
69-
"js-cookie": "^2.2.1"
7065
}
71-
}
66+
}

packages/cookie/scripts/postinstall.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const AgentCommands = {
1212
npm: "npm i",
1313
yarn: "yarn add",
1414
pnpm: "pnpm add",
15-
cnpm: "cnpm i",
15+
cnpm: "cnpm i"
1616
};
1717

1818
function loadModule(name) {
@@ -28,7 +28,7 @@ function installModules(names) {
2828
names = Array.isArray(names) ? names : [names];
2929
execSync(`${command} ${names.join(" ")}`, {
3030
stdio: "inherit",
31-
cwd: userRoot,
31+
cwd: userRoot
3232
});
3333
}
3434

@@ -52,7 +52,7 @@ function switchVersion(version) {
5252
}
5353
const files = fs.readdirSync(versionPath);
5454

55-
files.forEach((f) => {
55+
files.forEach(f => {
5656
fs.copyFileSync(path.join(versionPath, f), path.join(dist, f));
5757
});
5858

packages/vue-composable/package.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-composable",
3-
"version": "1.0.0-beta.20",
3+
"version": "1.0.0-beta.21",
44
"description": "vue-composable",
55
"main": "index.js",
66
"module": "dist/vue-composable.esm-bundler.js",
@@ -52,8 +52,5 @@
5252
"peerDependencies2": {
5353
"@vue/composition-api": "^1.0.0-beta.14",
5454
"vue": "^2.6.10"
55-
},
56-
"peerDependencies": {
57-
"@vue/runtime-core": "^3.0.0"
5855
}
59-
}
56+
}

packages/vue-composable/scripts/postinstall.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const AgentCommands = {
1212
npm: "npm i",
1313
yarn: "yarn add",
1414
pnpm: "pnpm add",
15-
cnpm: "cnpm i",
15+
cnpm: "cnpm i"
1616
};
1717

1818
function loadModule(name) {
@@ -28,7 +28,7 @@ function installModules(names) {
2828
names = Array.isArray(names) ? names : [names];
2929
execSync(`${command} ${names.join(" ")}`, {
3030
stdio: "inherit",
31-
cwd: userRoot,
31+
cwd: userRoot
3232
});
3333
}
3434

@@ -52,7 +52,7 @@ function switchVersion(version) {
5252
}
5353
const files = fs.readdirSync(versionPath);
5454

55-
files.forEach((f) => {
55+
files.forEach(f => {
5656
fs.copyFileSync(path.join(versionPath, f), path.join(dist, f));
5757
});
5858

0 commit comments

Comments
 (0)