Skip to content

Commit

Permalink
Updating packages
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisJohnsen committed Dec 2, 2024
1 parent 4ba7635 commit 52eada6
Show file tree
Hide file tree
Showing 6 changed files with 673 additions and 775 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish-icons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run yarn cache clean
run: yarn cache clean
- name: Run yarn install
run: yarn install
- name: Fetch icons
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bestseller/bestone-buying-icon-library",
"version": "1.3.8",
"version": "1.3.9",
"description": "Icon automation workflow with Figma",
"main": "dist/juuust-react-icon.cjs.js",
"module": "dist/juuust-react-icon.esm.js",
Expand Down Expand Up @@ -33,18 +33,18 @@
"prop-types": "^15.8.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.1.1"
"styled-components": "^6.1.13"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"cheerio": "^1.0.0-rc.3",
"concurrently": "^4.1.1",
"dotenv": "^8.2.0",
Expand All @@ -54,10 +54,10 @@
"p-queue": "2.4.2",
"prettier-eslint": "^9.0.0",
"rollup": "^4.28.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-postcss": "^3.1.3",
"rollup-plugin-serve": "^1.0.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^1.1.1",
"rollup-plugin-uglify": "^6.0.4",
"svgo": "^1.3.0",
"uppercamelcase": "^3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/data.json

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions src/icons.d.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/// <reference types="react" />
import { ComponentType, SVGAttributes } from "react";
import { ComponentType, SVGAttributes } from 'react';

interface Props extends SVGAttributes<SVGElement> {
color?: string;
size?: string | number;
}
interface Props extends SVGAttributes<SVGElement> {
color?: string;
size?: string | number;
}

type Icon = ComponentType<Props>;
export const BoxIcon: Icon;
type Icon = ComponentType<Props>;
export const BoxIcon: Icon;
export const SizeIcon: Icon;
export const LifebuoyIcon: Icon;
export const PlusIcon: Icon;
Expand Down Expand Up @@ -39,7 +39,7 @@ export const AngleDownIcon: Icon;
export const ExternalIcon: Icon;
export const BranchesMasterIcon: Icon;
export const StarIcon: Icon;
export const StarIconFilled: Icon;
export const FullStarIcon: Icon;
export const WaitingIcon: Icon;
export const FlagIcon: Icon;
export const CampaignIcon: Icon;
Expand Down
2 changes: 1 addition & 1 deletion src/icons.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export { default as AngleDownIcon } from './icons/Icons-angle-down-fill';
export { default as ExternalIcon } from './icons/Icons-external-fill';
export { default as BranchesMasterIcon } from './icons/Icons-branches-master-fill';
export { default as StarIcon } from './icons/Icons-star-fill';
export { default as StarIconFilled } from './icons/Icons-star-filled';
export { default as FullStarIcon } from './icons/Icons-full-star-fill';
export { default as WaitingIcon } from './icons/Icons-waiting-fill';
export { default as FlagIcon } from './icons/Icons-flag-fill';
export { default as CampaignIcon } from './icons/Icons-campaign-fill';
Expand Down
Loading

0 comments on commit 52eada6

Please sign in to comment.