Skip to content

Commit

Permalink
changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
0xa3k5 committed Oct 2, 2024
1 parent f17020d commit 45ed34f
Show file tree
Hide file tree
Showing 9 changed files with 2,095 additions and 2,086 deletions.
2 changes: 1 addition & 1 deletion apps/figma-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@create-figma-plugin/ui": "^3.1.0",
"@create-figma-plugin/utilities": "^3.1.0",
"preact": ">=10",
"@web3icons/core": "3.6.1"
"@web3icons/core": "3.6.2"
},
"devDependencies": {
"@create-figma-plugin/build": "^3.1.0",
Expand Down
4 changes: 2 additions & 2 deletions apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"@types/react": "18.2.64",
"@types/react-dom": "18.2.21",
"@vercel/analytics": "^1.2.2",
"@web3icons/core": "3.6.1",
"@web3icons/react": "3.6.1",
"@web3icons/core": "3.6.2",
"@web3icons/react": "3.6.2",
"autoprefixer": "10.4.18",
"eslint": "8.57.0",
"eslint-config-next": "14.1.3",
Expand Down
Binary file modified bun.lockb
Binary file not shown.
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @web3icons/core

## 3.6.2

### Patch Changes

- fix shortName for Beam network

## 3.6.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"svg crypto icons",
"coin icons"
],
"version": "3.6.1",
"version": "3.6.2",
"private": false,
"author": "0xa3k5",
"license": "MIT",
Expand Down Expand Up @@ -63,9 +63,9 @@
"access": "public"
},
"scripts": {
"build": "bun run pre-build && bun run build:types && tsup && bun run post-build",
"build": "bun run --bun pre-build && bun run build:types && tsup && bun run post-build",
"pre-build": "(cd ../utils && bun run pre-build:core)",
"build:types": "bun run tsc --outDir dist/types --declarationDir dist/types --declaration true",
"build:types": "tsc --outDir dist/types --declarationDir dist/types --declaration true",
"post-build": "bun run lint && bun run format && bun run src/post-build-fix-paths.ts",
"lint": "eslint ./src --ext .ts",
"format": "prettier --write \"**/*.{ts,js,md,json}\" --log-level error"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/metadata/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ export const networks: INetworkMetadata[] = [
variants: ['branded', 'mono'],
chainId: 4337,
nativeCoinId: 'beam',
shortName: 'beam',
shortName: 'base',
},
{
id: 'boba',
Expand Down
8 changes: 8 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @web3icons/react

## 3.6.2

### Patch Changes

- fix shortName for Beam network
- Updated dependencies
- @web3icons/core@3.6.2

## 3.6.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"crypto logos",
"coin icons"
],
"version": "3.6.1",
"version": "3.6.2",
"private": false,
"license": "MIT",
"main": "./dist/index.js",
Expand All @@ -38,7 +38,7 @@
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,md,mdx,json}\" --log-level error"
},
"dependencies": {
"@web3icons/core": "3.6.1",
"@web3icons/core": "3.6.2",
"react": "^18.2.0"
},
"devDependencies": {
Expand Down
4,149 changes: 2,072 additions & 2,077 deletions packages/react/src/utils/icon-import-map.ts

Large diffs are not rendered by default.

0 comments on commit 45ed34f

Please sign in to comment.