Skip to content

Commit 6f8aa27

Browse files
rileylnapierriley napier
and
riley napier
authored
version (#6)
Co-authored-by: riley napier <[email protected]>
1 parent f584e24 commit 6f8aa27

File tree

9 files changed

+29
-28
lines changed

9 files changed

+29
-28
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
scope: "@trycourier"
1919
always-auth: true
2020
- run: yarn
21-
- run: yarn release
21+
- run: yarn lerna:release
2222
env:
2323
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "0.1.10-alpha.7",
5+
"version": "0.1.10-alpha.8",
66
"npmClient": "yarn",
77
"useWorkspaces": true,
88
"command": {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"lerna": "lerna",
99
"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",
1111
"postinstall": "lerna bootstrap && yarn build",
1212
"build": "lerna run build && yarn types",
1313
"build:watch": "lerna run build:watch --stream --parallel",

packages/react-inbox/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@trycourier/react-inbox",
3-
"version": "0.1.10-alpha.7",
3+
"version": "0.1.10-alpha.8",
44
"description": "",
55
"main": "dist/index.js",
66
"types": "typings/index.d.ts",
@@ -20,7 +20,7 @@
2020
"dependencies": {
2121
"@apollo/client": "^3.3.11",
2222
"@tippyjs/react": "^4.2.3",
23-
"@trycourier/react-provider": "^0.1.10-alpha.7",
23+
"@trycourier/react-provider": "^0.1.10-alpha.8",
2424
"better-react-spinkit": "^2.0.4",
2525
"date-fns": "^2.19.0",
2626
"rimraf": "^3.0.2",

packages/react-inbox/src/components/Inbox/Bell.tsx

+16-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
import React, { forwardRef } from "react";
22
import styled from "styled-components";
33

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",
99

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+
}));
2021

2122
const Bell: React.ForwardRefExoticComponent<{
2223
className?: string;

packages/react-provider/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@trycourier/react-provider",
3-
"version": "0.1.10-alpha.7",
3+
"version": "0.1.10-alpha.8",
44
"description": "",
55
"main": "dist/index.js",
66
"types": "typings/index.d.ts",

packages/react-toast/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@trycourier/react-toast",
3-
"version": "0.1.10-alpha.7",
3+
"version": "0.1.10-alpha.8",
44
"description": "Beautiful, easy React toast notifications",
55
"main": "dist/index.js",
66
"types": "typings/index.d.ts",
@@ -21,7 +21,7 @@
2121
},
2222
"license": "MIT",
2323
"dependencies": {
24-
"@trycourier/react-provider": "^0.1.10-alpha.7",
24+
"@trycourier/react-provider": "^0.1.10-alpha.8",
2525
"react-toastify": "^6.2.0",
2626
"rimraf": "^3.0.2",
2727
"styled-components": "^5.2.1"

packages/storybook/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@trycourier/storybook",
3-
"version": "0.1.10-alpha.7",
3+
"version": "0.1.10-alpha.8",
44
"private": true,
55
"description": "Beautiful, easy React toast notifications",
66
"author": "Courier <[email protected]>",
@@ -20,9 +20,9 @@
2020
"@storybook/addon-knobs": "^6.1.21",
2121
"@storybook/addon-links": "^6.1.14",
2222
"@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",
2626
"storybook": "^6.1.21",
2727
"styled-components": "^5.2.1",
2828
"styled-normalize": "^8.0.7"

packages/types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@trycourier/types",
33
"private": true,
4-
"version": "0.1.10-alpha.7",
4+
"version": "0.1.10-alpha.8",
55
"main": "index.d.ts",
66
"types": "index.d.ts",
77
"scripts": {}

0 commit comments

Comments
 (0)