Skip to content

Commit

Permalink
Merge pull request #6 from realvjy/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
realvjy authored Apr 1, 2024
2 parents 3a92a93 + db5644c commit 38aedfe
Show file tree
Hide file tree
Showing 28 changed files with 1,564 additions and 1,394 deletions.
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

0 comments on commit 38aedfe

Please sign in to comment.