Skip to content

Commit

Permalink
feat: Bump simple-icons@10.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wootsbot committed Dec 9, 2023
1 parent b930a58 commit 1fc3f79
Show file tree
Hide file tree
Showing 6 changed files with 237 additions and 74 deletions.
5 changes: 5 additions & 0 deletions .changeset/pretty-buckets-train.md
@@ -0,0 +1,5 @@
---
'@icons-pack/react-simple-icons': minor
---

Bump simple-icons@10.1.0
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -3,7 +3,7 @@

# react-simple-icons

This package provides the [Simple Icons 9.16.1](https://github.com/simple-icons/simple-icons/releases/tag/9.16.1)
This package provides the [Simple Icons 10.1.0](https://github.com/simple-icons/simple-icons/releases/tag/10.1.0)
packaged as a set of [React](https://facebook.github.io/react/) components.

<a href="https://www.npmjs.com/package/@icons-pack/react-simple-icons" target="_blank">
Expand Down
27 changes: 4 additions & 23 deletions package.json
Expand Up @@ -2,18 +2,7 @@
"name": "@icons-pack/react-simple-icons",
"version": "9.1.0",
"description": "This package provides the Simple Icons packaged as a set of React components.",
"keywords": [
"react",
"simple-icons",
"brands",
"icons",
"svg",
"inline",
"design",
"component",
"codea",
"wootsbot"
],
"keywords": ["react", "simple-icons", "brands", "icons", "svg", "inline", "design", "component", "codea", "wootsbot"],
"homepage": "https://github.com/icons-pack/react-simple-icons#readme",
"bugs": {
"url": "https://github.com/icons-pack/react-simple-icons/issues"
Expand All @@ -38,13 +27,7 @@
"./icons/*": "./icons/*"
},
"sideEffects": false,
"files": [
"icons",
"*.d.ts*",
"*.js",
"*.mjs",
"*.cjs"
],
"files": ["./src/icons", "icons", "*.d.ts*", "*.js", "*.mjs", "*.cjs"],
"scripts": {
"clean": "rimraf -rf icons base.cjs base.d.ts base.mjs index.cjs index.d.ts index.mjs types.d.ts",
"build": "pnpm clean && vite build",
Expand All @@ -59,9 +42,7 @@
"release": "changeset publish"
},
"lint-staged": {
"./**/*.+(js|json)": [
"prettier --write"
]
"./**/*.+(js|json)": ["prettier --write"]
},
"bundlesize": [
{
Expand Down Expand Up @@ -93,7 +74,7 @@
"react": "^18.2.0",
"rimraf": "^3.0.2",
"signale": "^1.4.0",
"simple-icons": "9.16.1",
"simple-icons": "10.1.0",
"turbo": "1.10.12",
"typescript": "4.7.3",
"uppercamelcase": "3.0.0",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion scripts/generate-icons.js
Expand Up @@ -25,7 +25,10 @@ if (!fs.existsSync(outputFolderIconsTs)) {
// Write `src/index.ts`
fs.writeFileSync(
indexFilePath,
iconTitles.map((baseName) => iconExportTemplate(upperCamelCase(titleToFilename(baseName)))).join('\n') + '\n',
//iconTitles.map((baseName) => iconExportTemplate(upperCamelCase(titleToFilename(baseName)))).join('\n') + '\n',
iconTitles.map((baseName) => iconExportTemplate(upperCamelCase(titleToFilename(baseName)))).join('\n') +
'\n' +
'export type * from "./types";\n',
formatFile,
);

Expand Down

0 comments on commit 1fc3f79

Please sign in to comment.