This repository was archived by the owner on Sep 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +50
-20
lines changed Expand file tree Collapse file tree 7 files changed +50
-20
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @chakra-ui/nuxt ' : patch
3
+ ---
4
+
5
+ Fixes registration of internal icons
Original file line number Diff line number Diff line change
1
+ {
2
+ "mode" : " pre" ,
3
+ "tag" : " next" ,
4
+ "initialVersions" : {
5
+ "@chakra-ui/vue" : " 0.7.2" ,
6
+ "@chakra-ui/nuxt" : " 0.2.2" ,
7
+ "@chakra-ui/theme-vue" : " 0.2.8" ,
8
+ "chakra-ui-docs" : " 0.5.3"
9
+ },
10
+ "changesets" : [
11
+ " eight-tables-vanish"
12
+ ]
13
+ }
Original file line number Diff line number Diff line change 1
1
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2
2
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
3
4
- name : Build & Test Components
4
+ name : PR Workflow
5
5
6
6
on :
7
- # Trigger the workflow on push or pull request,
8
- # but only for the master branch
9
- push :
7
+ pull_request :
10
8
branches :
9
+ - master
11
10
- develop
12
- pull_request :
11
+ push :
13
12
branches :
14
13
- develop
15
14
@@ -20,15 +19,24 @@ jobs:
20
19
matrix :
21
20
node-version : [12.x]
22
21
steps :
23
- - uses : actions/checkout@v2
22
+ - name : Checkout
23
+ uses : actions/checkout@v2
24
+
24
25
- name : Use Node.js ${{ matrix.node-version }}
25
26
uses : actions/setup-node@v1
26
27
with :
27
28
node-version : ${{ matrix.node-version }}
28
- - run : yarn
29
- - run : yarn bootstrap
30
- - run : yarn lint
31
- - run : yarn build --if-present
32
- - run : yarn test
29
+
30
+ - name : Install dependencies
31
+ run : yarn install --frozen-lockfile && yarn bootstrap
32
+
33
+ - name : Lint types and code
34
+ run : yarn lint
35
+
36
+ - name : Build packages
37
+ run : yarn build
38
+
39
+ - name : Run tests
40
+ run : yarn test
33
41
env :
34
42
CI : true
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ name: Release
5
5
6
6
on :
7
7
push :
8
- branches :
9
- - master
10
8
paths :
11
9
- " packages/**"
10
+ branches :
11
+ - master
12
12
13
13
jobs :
14
14
release :
28
28
node-version : 12.x
29
29
30
30
- name : Install dependencies
31
- run : yarn
31
+ run : yarn install --frozen-lockfile && yarn bootstrap
32
32
33
- - name : Bootstrap
34
- run : yarn bootstrap
35
33
36
34
- name : Linting
37
35
run : yarn lint
46
44
47
45
- name : Setup CI Git User
48
46
run : |
49
- git config --global user.email "[email protected] "
50
47
git config --global user.name "codebender828"
48
+ git config --global user.email "[email protected] "
51
49
52
50
- name : Publish packages
53
51
uses : changesets/action@master
56
54
commit : " chore(release): version packages"
57
55
env :
58
56
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
59
- GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
57
+ GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## 0.2.3-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixes registration of internal icons
8
+
3
9
## 0.2.2
4
10
5
11
### Patch Changes
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ module.exports = function (moduleOptions) {
39
39
40
40
// Icons
41
41
const icons = {
42
- ...internalIcons . default ,
42
+ ...internalIcons ,
43
43
...packIcons ,
44
44
...( options . icons && options . icons . extend )
45
45
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @chakra-ui/nuxt" ,
3
- "version" : " 0.2.2 " ,
3
+ "version" : " 0.2.3-next.0 " ,
4
4
"description" : " Chakra UI Module for Nuxt.js" ,
5
5
"repository" : " https://github.com/chakra-ui/chakra-ui-vue" ,
6
6
"license" : " MIT" ,
You can’t perform that action at this time.
0 commit comments