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

Commit 5a770ff

Browse files
Merge pull request #37 from chakra-ui/develop
ci: CI release pipeline for `v0.0.1-alpha.0`
2 parents 86d9844 + ec38455 commit 5a770ff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+967
-118
lines changed

.changeset/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/master/docs/common-questions.md)

.changeset/chilly-tables-care.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
'@chakra-ui/c-accordion': patch
3+
'@chakra-ui/c-alert': patch
4+
'@chakra-ui/c-badge': patch
5+
'@chakra-ui/c-button': patch
6+
'@chakra-ui/c-color-mode': patch
7+
'@chakra-ui/c-flex': patch
8+
'@chakra-ui/c-icon': patch
9+
'@chakra-ui/c-popper': patch
10+
'@chakra-ui/c-portal': patch
11+
'@chakra-ui/c-reset': patch
12+
'@chakra-ui/c-spinner': patch
13+
'@chakra-ui/c-theme-provider': patch
14+
'@chakra-ui/c-visually-hidden': patch
15+
'@chakra-ui/vue-next': patch
16+
'@chakra-ui/nuxt-next': patch
17+
'@chakra-ui/vue-system': patch
18+
'@chakra-ui/vue-test-utils': patch
19+
'@chakra-ui/vue-theme': patch
20+
'@chakra-ui/vue-theme-tools': patch
21+
'@chakra-ui/vue-utils': patch
22+
---
23+
24+
Initial release for core system packages

.changeset/config.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": [
4+
"@changesets/changelog-github",
5+
{ "repo": "chakra-ui/chakra-ui-vue-next" }
6+
],
7+
"commit": false,
8+
"linked": [],
9+
"access": "public",
10+
"baseBranch": "master",
11+
"updateInternalDependencies": "patch",
12+
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
13+
"onlyUpdatePeerDependentsWhenOutOfRange": true
14+
},
15+
"ignore": []
16+
}

.changeset/pre.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"mode": "pre",
3+
"tag": "alpha",
4+
"initialVersions": {
5+
"@chakra-ui/c-accordion": "0.0.0",
6+
"@chakra-ui/c-alert": "0.0.0",
7+
"@chakra-ui/c-badge": "0.0.0",
8+
"@chakra-ui/c-button": "0.0.0",
9+
"@chakra-ui/c-color-mode": "0.0.0",
10+
"@chakra-ui/c-flex": "0.0.0",
11+
"@chakra-ui/c-icon": "0.0.0",
12+
"@chakra-ui/c-popper": "0.0.0",
13+
"@chakra-ui/c-portal": "0.0.0",
14+
"@chakra-ui/c-reset": "0.0.0",
15+
"@chakra-ui/c-spinner": "0.0.0",
16+
"@chakra-ui/c-theme-provider": "0.0.0",
17+
"@chakra-ui/c-visually-hidden": "0.0.0",
18+
"@chakra-ui/vue-next": "0.0.0",
19+
"@chakra-ui/nuxt-next": "0.0.0",
20+
"@chakra-ui/vue-system": "0.0.0",
21+
"@chakra-ui/vue-test-utils": "0.0.0",
22+
"@chakra-ui/vue-theme": "0.0.0",
23+
"@chakra-ui/vue-theme-tools": "0.0.0",
24+
"@chakra-ui/vue-utils": "0.0.0",
25+
"@chakra-ui/vue-docs": "0.0.0"
26+
},
27+
"changesets": [
28+
"chilly-tables-care"
29+
]
30+
}

.github/workflows/release.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,17 @@ jobs:
4444

4545
# TODO: Uncomment when ready to start testing RCs
4646

47-
# - name: Setup CI Git User
48-
# run: |
49-
# git config --global user.name "codebender828"
50-
# git config --global user.email "[email protected]"
47+
- name: Setup CI Git User
48+
run: |
49+
git config --global user.name "codebender828"
50+
git config --global user.email "[email protected]"
5151
52-
# - name: Publish packages
53-
# uses: changesets/action@master
54-
# with:
55-
# publish: yarn release
56-
# title: "chore(release): version packages"
57-
# commit: "chore(release): version packages"
58-
# env:
59-
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
60-
# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
52+
- name: Create Release Pull Request
53+
uses: changesets/action@master
54+
with:
55+
publish: yarn release
56+
title: "chore(release): version packages and publish"
57+
commit: "chore(release): version packages"
58+
env:
59+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
60+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"postinstall": "yarn bootstrap",
1414
"bootstrap": "yarn run lerna bootstrap",
1515
"scaffold": "hygen",
16+
"release": "yarn changeset publish",
1617
"build": "lerna run build --no-private --stream",
1718
"dev": "NODE_ENV=development vite serve playground --config ./vite.config.ts",
1819
"playground:build": "yarn install && yarn build && yarn bootstrap && NODE_ENV=production vite build playground --config ./vite.config.ts",
@@ -46,6 +47,8 @@
4647
"@babel/core": "^7.12.9",
4748
"@babel/preset-env": "^7.12.7",
4849
"@babel/preset-typescript": "^7.12.7",
50+
"@changesets/changelog-github": "^0.3.0",
51+
"@changesets/cli": "^2.14.1",
4952
"@commitlint/cli": "^11.0.0",
5053
"@commitlint/config-conventional": "^11.0.0",
5154
"@testing-library/jest-dom": "^5.11.9",

packages/c-accordion/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# @chakra-ui/c-accordion
2+
3+
## 0.0.1-alpha.0
4+
### Patch Changes
5+
6+
7+
8+
- [#36](https://github.com/chakra-ui/chakra-ui-vue-next/pull/36) [`8243ac6`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/8243ac6cdc1ef47e56b3ec2f4635f44396273ee8) Thanks [@codebender828](https://github.com/codebender828)! - Initial release for core system packages
9+
10+
- Updated dependencies [[`8243ac6`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/8243ac6cdc1ef47e56b3ec2f4635f44396273ee8)]:
11+
- @chakra-ui/vue-system@0.0.1-alpha.0

packages/c-accordion/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/c-accordion",
3-
"version": "1.0.0",
3+
"version": "0.0.1-alpha.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/types/index.d.ts",
@@ -19,6 +19,6 @@
1919
"build:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types"
2020
},
2121
"dependencies": {
22-
"@chakra-ui/vue-system": "*"
22+
"@chakra-ui/vue-system": "^0.0.1-alpha.0"
2323
}
2424
}

packages/c-alert/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# @chakra-ui/c-alert
2+
3+
## 0.0.1-alpha.0
4+
### Patch Changes
5+
6+
7+
8+
- [#36](https://github.com/chakra-ui/chakra-ui-vue-next/pull/36) [`8243ac6`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/8243ac6cdc1ef47e56b3ec2f4635f44396273ee8) Thanks [@codebender828](https://github.com/codebender828)! - Initial release for core system packages
9+
10+
- Updated dependencies [[`8243ac6`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/8243ac6cdc1ef47e56b3ec2f4635f44396273ee8)]:
11+
- @chakra-ui/c-icon@0.0.1-alpha.0
12+
- @chakra-ui/vue-system@0.0.1-alpha.0
13+
- @chakra-ui/vue-utils@0.0.1-alpha.0

packages/c-alert/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/c-alert",
3-
"version": "1.0.0",
3+
"version": "0.0.1-alpha.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/types/index.d.ts",
@@ -23,16 +23,16 @@
2323
"watch:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types --watch --incremental"
2424
},
2525
"dependencies": {
26-
"@chakra-ui/vue-system": "*",
27-
"@chakra-ui/vue-utils": "*",
28-
"@chakra-ui/c-icon": "*"
26+
"@chakra-ui/vue-system": "^0.0.1-alpha.0",
27+
"@chakra-ui/vue-utils": "^0.0.1-alpha.0",
28+
"@chakra-ui/c-icon": "^0.0.1-alpha.0"
2929
},
3030
"devDependencies": {
31-
"@chakra-ui/vue-system": "*",
31+
"@chakra-ui/vue-system": "^0.0.1-alpha.0",
3232
"vue": "^3.0.5"
3333
},
3434
"peerDependencies": {
35-
"@chakra-ui/vue-system": "*",
35+
"@chakra-ui/vue-system": "^0.0.1-alpha.0",
3636
"vue": "^3.0.5"
3737
}
3838
}

packages/c-badge/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# @chakra-ui/c-badge
2+
3+
## 0.0.1-alpha.0
4+
### Patch Changes
5+
6+
7+
8+
- [#36](https://github.com/chakra-ui/chakra-ui-vue-next/pull/36) [`8243ac6`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/8243ac6cdc1ef47e56b3ec2f4635f44396273ee8) Thanks [@codebender828](https://github.com/codebender828)! - Initial release for core system packages
9+
10+
- Updated dependencies [[`8243ac6`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/8243ac6cdc1ef47e56b3ec2f4635f44396273ee8)]:
11+
- @chakra-ui/vue-system@0.0.1-alpha.0
12+
- @chakra-ui/vue-utils@0.0.1-alpha.0

packages/c-badge/package.json

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@chakra-ui/c-badge",
33
"description": "Chakra UI Vue | Badges are used to highlight an item s status for quick recognition component",
4-
"version": "1.0.0",
4+
"version": "0.0.1-alpha.0",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
77
"types": "dist/types/index.d.ts",
@@ -12,7 +12,6 @@
1212
"files": [
1313
"dist"
1414
],
15-
1615
"publishConfig": {
1716
"access": "public"
1817
},
@@ -35,15 +34,15 @@
3534
"watch:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types --watch --incremental"
3635
},
3736
"dependencies": {
38-
"@chakra-ui/vue-system": "*",
39-
"@chakra-ui/vue-utils": "*"
37+
"@chakra-ui/vue-system": "^0.0.1-alpha.0",
38+
"@chakra-ui/vue-utils": "^0.0.1-alpha.0"
4039
},
4140
"devDependencies": {
42-
"@chakra-ui/vue-system": "*",
41+
"@chakra-ui/vue-system": "^0.0.1-alpha.0",
4342
"vue": "^3.0.5"
4443
},
4544
"peerDependencies": {
46-
"@chakra-ui/vue-system": "*",
45+
"@chakra-ui/vue-system": "^0.0.1-alpha.0",
4746
"vue": "^3.0.5"
4847
}
4948
}

packages/c-button/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# @chakra-ui/c-button
2+
3+
## 0.0.1-alpha.0
4+
### Patch Changes
5+
6+
7+
8+
- [#36](https://github.com/chakra-ui/chakra-ui-vue-next/pull/36) [`8243ac6`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/8243ac6cdc1ef47e56b3ec2f4635f44396273ee8) Thanks [@codebender828](https://github.com/codebender828)! - Initial release for core system packages
9+
10+
- Updated dependencies [[`8243ac6`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/8243ac6cdc1ef47e56b3ec2f4635f44396273ee8)]:
11+
- @chakra-ui/c-icon@0.0.1-alpha.0
12+
- @chakra-ui/c-spinner@0.0.1-alpha.0
13+
- @chakra-ui/vue-system@0.0.1-alpha.0
14+
- @chakra-ui/vue-utils@0.0.1-alpha.0

packages/c-button/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/c-button",
3-
"version": "1.0.0",
3+
"version": "0.0.1-alpha.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/types/index.d.ts",
@@ -23,17 +23,17 @@
2323
"watch:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types --watch --incremental"
2424
},
2525
"dependencies": {
26-
"@chakra-ui/vue-system": "*",
27-
"@chakra-ui/vue-utils": "*",
28-
"@chakra-ui/c-icon": "*",
29-
"@chakra-ui/c-spinner": "*"
26+
"@chakra-ui/vue-system": "^0.0.1-alpha.0",
27+
"@chakra-ui/vue-utils": "^0.0.1-alpha.0",
28+
"@chakra-ui/c-icon": "^0.0.1-alpha.0",
29+
"@chakra-ui/c-spinner": "^0.0.1-alpha.0"
3030
},
3131
"devDependencies": {
32-
"@chakra-ui/vue-system": "*",
32+
"@chakra-ui/vue-system": "^0.0.1-alpha.0",
3333
"vue": "^3.0.5"
3434
},
3535
"peerDependencies": {
36-
"@chakra-ui/vue-system": "*",
36+
"@chakra-ui/vue-system": "^0.0.1-alpha.0",
3737
"vue": "^3.0.5"
3838
}
3939
}

packages/c-color-mode/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# @chakra-ui/c-color-mode
2+
3+
## 0.0.1-alpha.0
4+
### Patch Changes
5+
6+
7+
8+
- [#36](https://github.com/chakra-ui/chakra-ui-vue-next/pull/36) [`8243ac6`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/8243ac6cdc1ef47e56b3ec2f4635f44396273ee8) Thanks [@codebender828](https://github.com/codebender828)! - Initial release for core system packages
9+
10+
- Updated dependencies [[`8243ac6`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/8243ac6cdc1ef47e56b3ec2f4635f44396273ee8)]:
11+
- @chakra-ui/vue-utils@0.0.1-alpha.0

packages/c-color-mode/package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/c-color-mode",
3-
"version": "1.0.0",
3+
"version": "0.0.1-alpha.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/types/index.d.ts",
@@ -11,7 +11,6 @@
1111
"files": [
1212
"dist"
1313
],
14-
1514
"publishConfig": {
1615
"access": "public"
1716
},
@@ -34,7 +33,7 @@
3433
"watch:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types --watch"
3534
},
3635
"dependencies": {
37-
"@chakra-ui/vue-utils": "*"
36+
"@chakra-ui/vue-utils": "^0.0.1-alpha.0"
3837
},
3938
"peerDependencies": {
4039
"vue": ">=3.0.5"

packages/c-flex/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# @chakra-ui/c-flex
2+
3+
## 0.0.1-alpha.0
4+
### Patch Changes
5+
6+
7+
8+
- [#36](https://github.com/chakra-ui/chakra-ui-vue-next/pull/36) [`8243ac6`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/8243ac6cdc1ef47e56b3ec2f4635f44396273ee8) Thanks [@codebender828](https://github.com/codebender828)! - Initial release for core system packages
9+
10+
- Updated dependencies [[`8243ac6`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/8243ac6cdc1ef47e56b3ec2f4635f44396273ee8)]:
11+
- @chakra-ui/vue-system@0.0.1-alpha.0
12+
- @chakra-ui/vue-utils@0.0.1-alpha.0

packages/c-flex/package.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@chakra-ui/c-flex",
33
"description": "Chakra UI Vue | C-flex component component",
4-
"version": "1.0.0",
4+
"version": "0.0.1-alpha.0",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
77
"types": "dist/types/index.d.ts",
@@ -12,7 +12,6 @@
1212
"files": [
1313
"dist"
1414
],
15-
1615
"publishConfig": {
1716
"access": "public"
1817
},
@@ -35,16 +34,16 @@
3534
"watch:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types --watch"
3635
},
3736
"dependencies": {
38-
"@chakra-ui/vue-utils": "*",
37+
"@chakra-ui/vue-utils": "^0.0.1-alpha.0",
3938
"csstype": "^3.0.5"
4039
},
4140
"devDependencies": {
42-
"@chakra-ui/vue-system": "*",
41+
"@chakra-ui/vue-system": "^0.0.1-alpha.0",
4342
"csstype": "^3.0.5",
4443
"vue": "^3.0.5"
4544
},
4645
"peerDependencies": {
47-
"@chakra-ui/vue-system": "*",
46+
"@chakra-ui/vue-system": "^0.0.1-alpha.0",
4847
"csstype": "^3.0.5",
4948
"vue": "^3.0.5"
5049
}

0 commit comments

Comments
 (0)