Skip to content

Commit

Permalink
feat: fix update script, upgrade iconpacks
Browse files Browse the repository at this point in the history
- Bootstrap Icons (v1.5.0)
- Simple Icons (v5.7.0)
- Octicons (v14.2.2)
- Simple Icons (v5.7.0)
  • Loading branch information
Renovamen committed Jul 24, 2021
1 parent 22255ef commit 9235fb9
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion iconpacks/bootstrap-icons
Submodule bootstrap-icons updated 309 files
2 changes: 1 addition & 1 deletion iconpacks/cryptocurrency-icons
2 changes: 1 addition & 1 deletion iconpacks/flag-icon
2 changes: 1 addition & 1 deletion iconpacks/octicons
Submodule octicons updated 95 files
+0 −4 .eslintrc.json
+43 −0 .github/ISSUE_TEMPLATE/bug-report.md
+6 −0 .github/ISSUE_TEMPLATE/config.yml
+19 −0 .github/ISSUE_TEMPLATE/feedback.md
+0 −25 .github/ISSUE_TEMPLATE/icon-request.md
+0 −6 .github/actions/build_node/entrypoint.sh
+0 −6 .github/actions/build_ruby/entrypoint.sh
+1 −1 .github/actions/version/entrypoint.js
+3 −3 .github/workflows/build.yml
+165 −0 .github/workflows/ci.yml
+52 −0 .github/workflows/deploy_preview.yml
+29 −0 .github/workflows/deploy_production.yml
+5 −1 .github/workflows/optimize.yml
+2 −2 .gitignore
+2 −0 .npmrc
+55 −0 CHANGELOG.md
+17 −19 CONTRIBUTING.md
+9 −3 README.md
+36 −0 add-octicon-checklist.md
+6 −5 docs/content/guidelines/usage.mdx
+4 −4 docs/content/packages/javascript.mdx
+1 −1 docs/content/packages/jekyll.mdx
+1 −1 docs/content/packages/rails.mdx
+2 −2 docs/content/packages/react.mdx
+1 −1 docs/content/packages/ruby.mdx
+2 −3 docs/content/packages/styled-system.mdx
+1 −0 docs/gatsby-config.js
+1 −1 icons/arrow-up-24.svg
+1 −0 icons/columns-16.svg
+1 −0 icons/columns-24.svg
+1 −0 icons/diamond-16.svg
+1 −0 icons/diamond-24.svg
+1 −0 icons/git-pull-request-closed-16.svg
+1 −0 icons/git-pull-request-closed-24.svg
+1 −0 icons/git-pull-request-draft-16.svg
+1 −0 icons/git-pull-request-draft-24.svg
+1 −0 icons/hash-16.svg
+1 −0 icons/hash-24.svg
+1 −1 icons/issue-closed-16.svg
+1 −1 icons/issue-closed-24.svg
+1 −0 icons/issue-draft-16.svg
+1 −0 icons/issue-draft-24.svg
+1 −1 icons/issue-opened-16.svg
+1 −1 icons/issue-opened-24.svg
+1 −1 icons/issue-reopened-16.svg
+1 −1 icons/issue-reopened-24.svg
+1 −0 icons/key-asterisk-16.svg
+1 −1 icons/number-16.svg
+1 −1 icons/number-24.svg
+0 −1 icons/octoface-16.svg
+0 −1 icons/octoface-24.svg
+0 −0 icons/repo-forked-24.svg
+1 −0 icons/rows-16.svg
+1 −0 icons/rows-24.svg
+1 −0 icons/select-single-16.svg
+1 −0 icons/single-select-24.svg
+1 −0 icons/sort-asc-16.svg
+1 −0 icons/sort-asc-24.svg
+1 −0 icons/sort-desc-16.svg
+1 −0 icons/sort-desc-24.svg
+1 −1 lib/octicons_gem/lib/octicons/version.rb
+0 −1 lib/octicons_gem/octicons.gemspec
+1 −1 lib/octicons_helper/Gemfile
+1 −1 lib/octicons_helper/lib/octicons_helper/version.rb
+1 −1 lib/octicons_helper/octicons_helper.gemspec
+1 −1 lib/octicons_jekyll/Gemfile
+1 −1 lib/octicons_jekyll/jekyll-octicons.gemspec
+1 −1 lib/octicons_jekyll/lib/jekyll-octicons/version.rb
+1 −1 lib/octicons_node/index.js
+1 −0 lib/octicons_node/index.scss
+0 −6,739 lib/octicons_node/package-lock.json
+23 −5 lib/octicons_node/package.json
+1 −1 lib/octicons_node/prettier.config.js
+0 −4 lib/octicons_node/script/build.js
+4,586 −0 lib/octicons_node/yarn.lock
+20 −2 lib/octicons_react/.eslintrc.json
+0 −12,752 lib/octicons_react/package-lock.json
+9 −6 lib/octicons_react/package.json
+3 −3 lib/octicons_react/pages/index.js
+1 −1 lib/octicons_react/prettier.config.js
+2 −1 lib/octicons_react/script/.eslintrc.json
+1 −1 lib/octicons_react/src/__tests__/__snapshots__/octicon.js.snap
+2 −1 lib/octicons_react/src/get-svg-props.js
+8,558 −0 lib/octicons_react/yarn.lock
+20 −2 lib/octicons_styled/.eslintrc.json
+0 −13,025 lib/octicons_styled/package-lock.json
+8 −6 lib/octicons_styled/package.json
+1 −1 lib/octicons_styled/prettier.config.js
+8,629 −0 lib/octicons_styled/yarn.lock
+4 −1 now.json
+0 −7,146 package-lock.json
+33 −15 package.json
+1 −1 prettier.config.js
+1 −5 tests/index.js
+4,870 −0 yarn.lock
8 changes: 7 additions & 1 deletion scripts/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ do
if [ -d $dir ] && [ ! $dir = "./iconpacks/gameicons" ]
then
echo Updating $dir ...
(cd $dir; git pull origin master)

if [ $dir = "./iconpacks/bootstrap-icons" ] || [ $dir = "./iconpacks/octicons" ]
then
(cd $dir && git pull origin main)
else
(cd $dir && git pull origin master)
fi
fi
done

0 comments on commit 9235fb9

Please sign in to comment.