Skip to content

Commit 4047826

Browse files
committed
Bump 1.0.22
1 parent eb64b19 commit 4047826

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,6 @@ jobs:
116116
git config --global user.name "GitHub Actions"
117117
git config --global user.email "[email protected]"
118118
119-
- name: Auto increment version (optional)
120-
run: npm version patch -m "Upgrade to %s for reasons"
121-
122119
- uses: "marvinpinto/action-automatic-releases@latest"
123120
with:
124121
repo_token: "${{ secrets.GITHUB_TOKEN }}"

README.md

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Yail
22

3-
[![lint-and-test-pr](https://github.com/Programmer-Network/yail/actions/workflows/lint-and-test.yaml/badge.svg)](https://github.com/Programmer-Network/yail/actions/workflows/lint-and-test.yaml)
4-
[![pages-build-deployment](https://github.com/Programmer-Network/yail/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/Programmer-Network/yail/actions/workflows/pages/pages-build-deployment)
5-
[![deploy-storybook](https://github.com/Programmer-Network/yail/actions/workflows/deploy-storybook.yaml/badge.svg)](https://github.com/Programmer-Network/yail/actions/workflows/deploy-storybook.yaml)
3+
[![lint-and-test-pr](https://github.com/Programmer-Network/yail/actions/workflows/ci.yaml/badge.svg)](https://github.com/Programmer-Network/yail/actions/workflows/ci.yaml)
64

75
<p align="center">
86
<img src="./assets/images/yail-logo.png">
@@ -48,38 +46,41 @@ Before you begin, ensure you have met the following requirements:
4846
the project directory.
4947
- [pnpm](https://pnpm.io/): Install pnpm globally with `npm install -g pnpm`.
5048

51-
5249
## Getting Started
5350

5451
### Usage
5552

5653
#### Installation
5754

58-
To integrate Yail into your project, install it using your preferred package manager. For example, with `pnpm`, you can add it as follows:
55+
To integrate Yail into your project, install it using your preferred package
56+
manager. For example, with `pnpm`, you can add it as follows:
5957

6058
```bash
6159
pnpm add @programmer_network/yail
6260
```
6361

6462
#### Incorporating Components into Your Project
6563

66-
After installation, you can start using Yail components in your React project. Here's how you can import a component:
64+
After installation, you can start using Yail components in your React project.
65+
Here's how you can import a component:
6766

6867
```jsx
6968
import { Button } from "@programmer_network/yail";
7069
```
7170

7271
#### Exploring Components with Storybook
7372

74-
Yail provides a comprehensive component showcase through Storybook. To explore these components, start the Storybook server:
73+
Yail provides a comprehensive component showcase through Storybook. To explore
74+
these components, start the Storybook server:
7575

7676
```bash
7777
pnpm storybook
7878
```
7979

8080
## Contributing to Yail
8181

82-
We welcome contributions to Yail! Here's how you can set up the project locally for development.
82+
We welcome contributions to Yail! Here's how you can set up the project locally
83+
for development.
8384

8485
### Setting Up the Development Environment
8586

@@ -108,7 +109,8 @@ To start the development server, run:
108109
pnpm dev
109110
```
110111

111-
This command will launch Vite's development server. You can then make changes to the library, and Vite will automatically reload these changes.
112+
This command will launch Vite's development server. You can then make changes to
113+
the library, and Vite will automatically reload these changes.
112114

113115
View your changes inside storybook:
114116

@@ -134,7 +136,8 @@ pnpm test:watch
134136

135137
### Linting and Code Formatting
136138

137-
To ensure code consistency, we use ESLint and Prettier. Run these before committing your changes:
139+
To ensure code consistency, we use ESLint and Prettier. Run these before
140+
committing your changes:
138141

139142
**To lint your code:**
140143

@@ -155,8 +158,9 @@ Once you've made your changes:
155158
1. Fork the repository.
156159
2. Create a new branch for your changes.
157160
3. Commit your changes and push them to your fork.
158-
4. Open a pull request against the `main` branch of the `Programmer-Network/yail` repository.
161+
4. Open a pull request against the `main` branch of the
162+
`Programmer-Network/yail` repository.
159163

160164
Please provide a clear description of the changes in your pull request.
161165

162-
Thank you for contributing to Yail!
166+
Thank you for contributing to Yail!

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@programmer_network/yail",
3-
"version": "1.0.20",
3+
"version": "1.0.22",
44
"description": "Programmer Network's official UI library for React",
55
"author": "Aleksandar Grbic - (https://programmer.network)",
66
"publishConfig": {

0 commit comments

Comments
 (0)