Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 6f5e742

Browse files
committed
chore: create changeset
1 parent cf67d4b commit 6f5e742

File tree

7 files changed

+50
-24
lines changed

7 files changed

+50
-24
lines changed

packages/chakra-ui-core/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 0.9.4
4+
5+
### Patch Changes
6+
7+
- fix: syncs core and nuxt packages
8+
39
## 0.9.3
410

511
### Patch Changes

packages/chakra-ui-core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/vue",
3-
"version": "0.9.3",
3+
"version": "0.9.4",
44
"description": "Build Accessible and Responsive Vue.js websites and applications with speed ⚡️",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -21,7 +21,7 @@
2121
"access": "public"
2222
},
2323
"scripts": {
24-
"build": "yarn clean && rollup -c && rollup -c --environment MINIFY",
24+
"build": "yarn clean && rollup -c --environment MINIFY",
2525
"dev": "rollup --config rollup.dev.config.js --watch",
2626
"test": "echo testing ...",
2727
"clean": "rimraf ./dist"

packages/chakra-ui-core/rollup.config.js

+20-18
Original file line numberDiff line numberDiff line change
@@ -95,24 +95,26 @@ const entries = {
9595
* Configurations
9696
*/
9797
export default () => {
98-
const config = [{
99-
input: entries,
100-
output: {
101-
dir: 'dist/esm/',
102-
format: 'esm',
103-
banner: bannerTxt
104-
},
105-
...commons
106-
},
107-
{
108-
input: entries,
109-
output: {
110-
dir: 'dist/cjs/',
111-
format: 'cjs',
112-
exports: 'named',
113-
banner: bannerTxt
98+
const config = [
99+
{
100+
input: entries,
101+
output: {
102+
dir: 'dist/esm/',
103+
format: 'esm',
104+
banner: bannerTxt
105+
},
106+
...commons
114107
},
115-
...commons
116-
}]
108+
{
109+
input: entries,
110+
output: {
111+
dir: 'dist/cjs/',
112+
format: 'cjs',
113+
exports: 'named',
114+
banner: bannerTxt
115+
},
116+
...commons
117+
}
118+
]
117119
return config
118120
}

packages/chakra-ui-nuxt/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## 0.3.5
4+
5+
### Patch Changes
6+
7+
- fix: syncs core and nuxt packages
8+
9+
- Updated dependencies []:
10+
- @chakra-ui/vue@0.9.4
11+
312
## 0.3.4
413

514
### Patch Changes

packages/chakra-ui-nuxt/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/nuxt",
3-
"version": "0.3.4",
3+
"version": "0.3.5",
44
"description": "Chakra UI Module for Nuxt.js",
55
"repository": "https://github.com/chakra-ui/chakra-ui-vue",
66
"license": "MIT",
@@ -18,7 +18,7 @@
1818
"test": "jest"
1919
},
2020
"dependencies": {
21-
"@chakra-ui/vue": "^0.9.2",
21+
"@chakra-ui/vue": "^0.9.4",
2222
"chakra-loader": "latest",
2323
"@emotion/css": "^11.0.0"
2424
},

website/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## 0.6.2
4+
5+
### Patch Changes
6+
7+
- fix: syncs core and nuxt packages
8+
9+
- Updated dependencies []:
10+
- @chakra-ui/vue@0.9.4
11+
312
## 0.6.1
413

514
### Patch Changes

website/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chakra-ui-docs",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"description": "Chakra UI Vue documentation site",
55
"private": true,
66
"scripts": {
@@ -27,7 +27,7 @@
2727
},
2828
"dependencies": {
2929
"@chakra-ui/theme-vue": "^0.2.11",
30-
"@chakra-ui/vue": "^0.9.2",
30+
"@chakra-ui/vue": "^0.9.4",
3131
"@emotion/css": "^11.0.0",
3232
"@mdx-js/vue-loader": "^1.6.1",
3333
"@nuxtjs/dotenv": "^1.4.0",

0 commit comments

Comments
 (0)