Skip to content

Commit

Permalink
upgrading to blade-icons v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
swapnilsarwe committed Mar 22, 2021
1 parent 303d9a4 commit 05f7471
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 17 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4, 8.0]
laravel: [^8.0, ^7.0]
php: [7.4, 8.0]
laravel: [^8.0]

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}

name: P${{ matrix.php }} - L${{ matrix.laravel }}

steps:
- name: Checkout code
Expand All @@ -33,6 +34,5 @@ jobs:
run: |
composer require "illuminate/contracts=${{ matrix.laravel }}" --prefer-dist --no-interaction --no-update
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

This changelog follows [the Keep a Changelog standard](https://keepachangelog.com).

## 1.0.0 (2021-03-22)
* upgrading to [blade-ui-kit/blade-icons v1.0.0](https://github.com/blade-ui-kit/blade-icons/releases/tag/1.0.0)

## 0.1.1 (2021-03-17)
Fixed the attributes - since all icons are of type outline

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Then use them in your views like:

### Blade Icons

Blade System UIcons uses Blade Icons under the hood. Please refer to [the Blade Icons readme](https://github.com/blade-ui-kit/blade-icons) for additional functionality.
Blade Ikonate uses Blade Icons under the hood. Please refer to [the Blade Icons readme](https://github.com/blade-ui-kit/blade-icons) for additional functionality.

## Changelog

Expand Down
15 changes: 8 additions & 7 deletions bin/compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
set -e

# prepare the source of icons by cloning the repo
TEMP_DIR=tmp
TEMP_DIR=blade-icon-temp-dir
DIRECTORY=$(cd `dirname $0` && pwd)

mkdir -p $TEMP_DIR
SOURCE=$TEMP_DIR/ikonate
git clone git@github.com:mikolajdobrucki/ikonate.git $TEMP_DIR/ikonate

DIRECTORY=$(cd `dirname $0` && pwd)
# git clone git@github.com:mikolajdobrucki/ikonate.git $TEMP_DIR/ikonate
cd $SOURCE
git pull
cd $DIRECTORY/../
RESOURCES=$DIRECTORY/../resources/svg

echo $SOURCE
Expand All @@ -31,8 +34,6 @@ for ICON_DIR in $SOURCE/icons/*; do
done

echo "copied all svgs!"
echo "Removing "$TEMP_DIR
rm -rf $TEMP_DIR

echo "All Done!"
# echo "Run `php bin/compile.php` to update the svgs"
echo "Run `php bin/compile.php` to update the svgs"
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
}
],
"require": {
"php": "^7.3|^8.0",
"blade-ui-kit/blade-icons": "^0.5.0",
"illuminate/support": "^7.14|^8.0"
"php": "^7.4|^8.0",
"blade-ui-kit/blade-icons": "^1.0",
"illuminate/support": "^8.0"
},
"require-dev": {
"orchestra/testbench": "^5.0|^6.0",
"phpunit/phpunit": "^8.0|^9.0",
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.0",
"symfony/finder": "^5.2"
},
"autoload": {
Expand Down

0 comments on commit 05f7471

Please sign in to comment.