developer-icons 5.2.2 → 5.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/utils.d.ts +2 -1
- package/package.json +4 -4
package/dist/utils.d.ts
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import { default as DI } from './main';
|
1
2
|
export declare const capitalizeFirstletter: (str: string, invert?: boolean) => string;
|
2
3
|
export declare const mergeClassNames: (defaultClass: string, className?: string) => string;
|
3
|
-
export declare const generateIconCompName: (initialName: string) =>
|
4
|
+
export declare const generateIconCompName: (initialName: string) => keyof typeof DI;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "developer-icons",
|
3
3
|
"description": "A collection of well-optimized SVG tech logos for developers and designers—customizable, scalable, and free.",
|
4
|
-
"version": "5.2.
|
4
|
+
"version": "5.2.4",
|
5
5
|
"type": "module",
|
6
6
|
"homepage": "https://xandemon.github.io/developer-icons",
|
7
7
|
"repository": {
|
@@ -32,13 +32,13 @@
|
|
32
32
|
],
|
33
33
|
"scripts": {
|
34
34
|
"dev:playground": "vite",
|
35
|
-
"dev:
|
35
|
+
"dev:showcase": "cd showcase && npm run dev",
|
36
36
|
"clean": "rimraf --glob dist && rimraf --glob lib/icons/*.tsx",
|
37
37
|
"build": "npm run clean && tsx ./lib/scripts/build.ts && tsc --p ./tsconfig-build.json && vite build",
|
38
|
-
"build:
|
38
|
+
"build:showcase": "cd showcase && npm run build",
|
39
39
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
40
40
|
"preview": "vite preview",
|
41
|
-
"preview:
|
41
|
+
"preview:showcase": "cd showcase && npm run preview",
|
42
42
|
"prePublishOnly": "npm run build",
|
43
43
|
"sort:data": "tsx ./lib/scripts/sortData.ts",
|
44
44
|
"optimize-svgs": "svgo -f ./icons/raw -o ./icons && rimraf --glob icons/raw/*"
|