Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #6

Merged
merged 8 commits into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github: realvjy
buy_me_a_coffee: realvjy
27 changes: 13 additions & 14 deletions .github/workflows/coolshapes.js.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
name: Node.js CI
name: Build and test

on:
push:
branches: [ "dev" ]
branches: ["dev", "main"]
pull_request:
branches: [ "dev" ]
branches: ["dev", "main"]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 21.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm test
- uses: actions/checkout@v3
- name: Builds and t
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "npm"
- run: npm ci
- run: npm run build
- run: npm test
45 changes: 31 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,41 @@
# Changelog

## 0.1.0-beta.0

- Bug Fix
- Update Interface of iconBase
- Ready to release

## 0.0.8-alpha.1

- Bug Fix

## 0.0.7-alpha.0

- Rendering View Bug Fix for some shapes


## 0.0.6-alpha.0
- Add number type shapes, Total count 115

- Add `number` type shapes, Total count 115
- Change the index to start from 0

## 0.0.5-alpha.1

- Add more shapes. Total count 105
- Fix noise toggle

## 0.0.5-alpha.0

- Change name to `coolshapes-react@0.0.5-alpha.0`
- Fix rendering bugs
- Added all remaining shapes


## 0.0.4-alpha.0

- Changed versioning to alpha `react-coolshapes@0.0.4-alpha.0`
- Added 90+ shapes from different categories
`Coolshape`, `Ellipse`, `Flower`, `Misc`, `Moon`, `Polygon`, `Rectangle`, `Star`, `Triangle`

`Coolshape`, `Ellipse`, `Flower`, `Misc`, `Moon`, `Polygon`, `Rectangle`, `Star`, `Triangle`

## 0.0.3

Expand All @@ -27,21 +45,20 @@
```jsx
<Coolshape type="star" noise="true">
```

## 0.0.2

- Published - `react-coolshapes@0.0.2`
- Published - `react-coolshapes@0.0.2`
- Minor fixes


## 0.0.1 First Publish

- NPM package published - `react-coolshapes`
- NPM package published - `react-coolshapes`

- Added these 4 shapes and publish to test on [coolshap.es](https://coolshapes)
```jsx
"star-1": ShapeType;
"star-2": ShapeType;
"circle-1": ShapeType;
"circle-2": ShapeType;
```
```jsx
"star-1": ShapeType;
"star-2": ShapeType;
"circle-1": ShapeType;
"circle-2": ShapeType;
```
Loading
Loading