File tree 9 files changed +29
-28
lines changed
9 files changed +29
-28
lines changed Original file line number Diff line number Diff line change 18
18
scope : " @trycourier"
19
19
always-auth : true
20
20
- run : yarn
21
- - run : yarn release
21
+ - run : yarn lerna: release
22
22
env :
23
23
NODE_AUTH_TOKEN : ${{ secrets.NPM_AUTH_TOKEN }}
Original file line number Diff line number Diff line change 2
2
"packages" : [
3
3
" packages/*"
4
4
],
5
- "version" : " 0.1.10-alpha.7 " ,
5
+ "version" : " 0.1.10-alpha.8 " ,
6
6
"npmClient" : " yarn" ,
7
7
"useWorkspaces" : true ,
8
8
"command" : {
Original file line number Diff line number Diff line change 7
7
"scripts" : {
8
8
"lerna" : " lerna" ,
9
9
"lerna:version" : " lerna version --no-push --no-git-tag-version" ,
10
- "release " : " lerna publish from-package --yes --no-verify-access" ,
10
+ "lerna:publish " : " lerna publish from-package --yes --no-verify-access" ,
11
11
"postinstall" : " lerna bootstrap && yarn build" ,
12
12
"build" : " lerna run build && yarn types" ,
13
13
"build:watch" : " lerna run build:watch --stream --parallel" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @trycourier/react-inbox" ,
3
- "version" : " 0.1.10-alpha.7 " ,
3
+ "version" : " 0.1.10-alpha.8 " ,
4
4
"description" : " " ,
5
5
"main" : " dist/index.js" ,
6
6
"types" : " typings/index.d.ts" ,
20
20
"dependencies" : {
21
21
"@apollo/client" : " ^3.3.11" ,
22
22
"@tippyjs/react" : " ^4.2.3" ,
23
- "@trycourier/react-provider" : " ^0.1.10-alpha.7 " ,
23
+ "@trycourier/react-provider" : " ^0.1.10-alpha.8 " ,
24
24
"better-react-spinkit" : " ^2.0.4" ,
25
25
"date-fns" : " ^2.19.0" ,
26
26
"rimraf" : " ^3.0.2" ,
Original file line number Diff line number Diff line change 1
1
import React , { forwardRef } from "react" ;
2
2
import styled from "styled-components" ;
3
3
4
- export const StyledButton = styled . button `
5
- border: none;
6
- background: transparent;
7
- padding: 0;
8
- outline: none;
4
+ export const StyledButton = styled . button ( ( { theme } ) => ( {
5
+ border : " none" ,
6
+ background : " transparent" ,
7
+ padding : 0 ,
8
+ outline : " none" ,
9
9
10
- svg {
11
- cursor: pointer;
12
- height: 20px;
13
- width: 20px;
14
- :hover g {
15
- fill: #9d3789;
16
- transition: all 0.05s ease-in-out;
17
- }
18
- }
19
- ` ;
10
+ svg : {
11
+ cursor : "pointer" ,
12
+ height : 20 ,
13
+ width : 20 ,
14
+ ":hover g" : {
15
+ fill : "#9d3789" ,
16
+ transition : "all 0.05s ease-in-out" ,
17
+ } ,
18
+ } ,
19
+ ...theme . icon ,
20
+ } ) ) ;
20
21
21
22
const Bell : React . ForwardRefExoticComponent < {
22
23
className ?: string ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @trycourier/react-provider" ,
3
- "version" : " 0.1.10-alpha.7 " ,
3
+ "version" : " 0.1.10-alpha.8 " ,
4
4
"description" : " " ,
5
5
"main" : " dist/index.js" ,
6
6
"types" : " typings/index.d.ts" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @trycourier/react-toast" ,
3
- "version" : " 0.1.10-alpha.7 " ,
3
+ "version" : " 0.1.10-alpha.8 " ,
4
4
"description" : " Beautiful, easy React toast notifications" ,
5
5
"main" : " dist/index.js" ,
6
6
"types" : " typings/index.d.ts" ,
21
21
},
22
22
"license" : " MIT" ,
23
23
"dependencies" : {
24
- "@trycourier/react-provider" : " ^0.1.10-alpha.7 " ,
24
+ "@trycourier/react-provider" : " ^0.1.10-alpha.8 " ,
25
25
"react-toastify" : " ^6.2.0" ,
26
26
"rimraf" : " ^3.0.2" ,
27
27
"styled-components" : " ^5.2.1"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @trycourier/storybook" ,
3
- "version" : " 0.1.10-alpha.7 " ,
3
+ "version" : " 0.1.10-alpha.8 " ,
4
4
"private" : true ,
5
5
"description" : " Beautiful, easy React toast notifications" ,
6
6
"author" :
" Courier <[email protected] >" ,
20
20
"@storybook/addon-knobs" : " ^6.1.21" ,
21
21
"@storybook/addon-links" : " ^6.1.14" ,
22
22
"@storybook/react" : " ^6.1.14" ,
23
- "@trycourier/react-inbox" : " ^0.1.10-alpha.7 " ,
24
- "@trycourier/react-provider" : " ^0.1.10-alpha.7 " ,
25
- "@trycourier/react-toast" : " ^0.1.10-alpha.7 " ,
23
+ "@trycourier/react-inbox" : " ^0.1.10-alpha.8 " ,
24
+ "@trycourier/react-provider" : " ^0.1.10-alpha.8 " ,
25
+ "@trycourier/react-toast" : " ^0.1.10-alpha.8 " ,
26
26
"storybook" : " ^6.1.21" ,
27
27
"styled-components" : " ^5.2.1" ,
28
28
"styled-normalize" : " ^8.0.7"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @trycourier/types" ,
3
3
"private" : true ,
4
- "version" : " 0.1.10-alpha.7 " ,
4
+ "version" : " 0.1.10-alpha.8 " ,
5
5
"main" : " index.d.ts" ,
6
6
"types" : " index.d.ts" ,
7
7
"scripts" : {}
You can’t perform that action at this time.
0 commit comments