-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from realvjy/dev
Dev
- Loading branch information
Showing
28 changed files
with
1,564 additions
and
1,394 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: realvjy | ||
buy_me_a_coffee: realvjy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 `[email protected]` | ||
- Fix rendering bugs | ||
- Added all remaining shapes | ||
|
||
|
||
## 0.0.4-alpha.0 | ||
|
||
- Changed versioning to alpha `[email protected]` | ||
- 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 | ||
|
||
|
@@ -27,21 +45,20 @@ | |
```jsx | ||
<Coolshape type="star" noise="true"> | ||
``` | ||
|
||
## 0.0.2 | ||
|
||
- Published - `[email protected]` | ||
- Published - `[email protected]` | ||
- 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; | ||
``` |
Oops, something went wrong.