Skip to content

Commit 38aedfe

Browse files
authored
Merge pull request realvjy#6 from realvjy/dev
Dev
2 parents 3a92a93 + db5644c commit 38aedfe

28 files changed

+1564
-1394
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github: realvjy
2+
buy_me_a_coffee: realvjy

.github/workflows/coolshapes.js.yml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
1-
name: Node.js CI
1+
name: Build and test
22

33
on:
44
push:
5-
branches: [ "dev" ]
5+
branches: ["dev", "main"]
66
pull_request:
7-
branches: [ "dev" ]
7+
branches: ["dev", "main"]
88

99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
12-
strategy:
13-
matrix:
14-
node-version: [16.x, 18.x, 21.x]
12+
1513
steps:
16-
- uses: actions/checkout@v3
17-
- name: Use Node.js ${{ matrix.node-version }}
18-
uses: actions/setup-node@v3
19-
with:
20-
node-version: ${{ matrix.node-version }}
21-
cache: 'npm'
22-
- run: npm ci
23-
- run: npm test
14+
- uses: actions/checkout@v3
15+
- name: Builds and t
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: 16.x
19+
cache: "npm"
20+
- run: npm ci
21+
- run: npm run build
22+
- run: npm test

CHANGELOG.md

Lines changed: 31 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,41 @@
11
# Changelog
22

3+
## 0.1.0-beta.0
4+
5+
- Bug Fix
6+
- Update Interface of iconBase
7+
- Ready to release
8+
9+
## 0.0.8-alpha.1
10+
11+
- Bug Fix
12+
13+
## 0.0.7-alpha.0
14+
15+
- Rendering View Bug Fix for some shapes
16+
17+
318
## 0.0.6-alpha.0
4-
- Add number type shapes, Total count 115
19+
20+
- Add `number` type shapes, Total count 115
521
- Change the index to start from 0
22+
623
## 0.0.5-alpha.1
24+
725
- Add more shapes. Total count 105
826
- Fix noise toggle
927

1028
## 0.0.5-alpha.0
29+
1130
- Change name to `coolshapes-react@0.0.5-alpha.0`
1231
- Fix rendering bugs
1332
- Added all remaining shapes
1433

15-
1634
## 0.0.4-alpha.0
35+
1736
- Changed versioning to alpha `react-coolshapes@0.0.4-alpha.0`
1837
- Added 90+ shapes from different categories
19-
`Coolshape`, `Ellipse`, `Flower`, `Misc`, `Moon`, `Polygon`, `Rectangle`, `Star`, `Triangle`
20-
38+
`Coolshape`, `Ellipse`, `Flower`, `Misc`, `Moon`, `Polygon`, `Rectangle`, `Star`, `Triangle`
2139

2240
## 0.0.3
2341

@@ -27,21 +45,20 @@
2745
```jsx
2846
<Coolshape type="star" noise="true">
2947
```
30-
48+
3149
## 0.0.2
3250

33-
- Published - `react-coolshapes@0.0.2`
51+
- Published - `react-coolshapes@0.0.2`
3452
- Minor fixes
3553

36-
3754
## 0.0.1 First Publish
3855

39-
- NPM package published - `react-coolshapes`
56+
- NPM package published - `react-coolshapes`
4057

4158
- Added these 4 shapes and publish to test on [coolshap.es](https://coolshapes)
42-
```jsx
43-
"star-1": ShapeType;
44-
"star-2": ShapeType;
45-
"circle-1": ShapeType;
46-
"circle-2": ShapeType;
47-
```
59+
```jsx
60+
"star-1": ShapeType;
61+
"star-2": ShapeType;
62+
"circle-1": ShapeType;
63+
"circle-2": ShapeType;
64+
```

0 commit comments

Comments
 (0)