@generation/icons 1.1.3 → 1.1.5
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/.circleci/config.yml +61 -3
- package/dist/index.js +1 -1
- package/package.json +3 -2
- package/packages/demo/image.png +0 -0
- package/packages/demo/package-lock.json +4 -4
- package/packages/demo/package.json +1 -1
- package/packages/demo/src/components/Gallery/Gallery.jsx +373 -3
- package/scripts/create-full.mjs +46 -0
- package/src/Icons/{Link.jsx → LinkIcon.jsx} +2 -2
- package/src/Icons/index.js +1 -1
- /package/assets/{link.svg → link-icon.svg} +0 -0
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@generation/icons",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "SVG bases React icon components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"list": "node ./scripts/list.mjs",
|
|
8
|
-
"build-all": "npm run clean && npm run transform && npm run create",
|
|
8
|
+
"build-all": "npm run clean && npm run transform && npm run create && npm run create:gallery",
|
|
9
9
|
"transform": "node ./scripts/transform.mjs",
|
|
10
10
|
"create": "node ./scripts/create.mjs",
|
|
11
|
+
"create:gallery": "node ./scripts/create-full.mjs",
|
|
11
12
|
"clean": "rm -rf src/icons/*",
|
|
12
13
|
"build": "webpack --mode=production",
|
|
13
14
|
"semantic-release": "semantic-release"
|
|
Binary file
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"name": "demo",
|
|
9
9
|
"version": "0.0.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@generation/icons": "^1.
|
|
11
|
+
"@generation/icons": "^1.1.3",
|
|
12
12
|
"react": "^18.3.1",
|
|
13
13
|
"react-dom": "^18.3.1"
|
|
14
14
|
},
|
|
@@ -808,9 +808,9 @@
|
|
|
808
808
|
}
|
|
809
809
|
},
|
|
810
810
|
"node_modules/@generation/icons": {
|
|
811
|
-
"version": "1.
|
|
812
|
-
"resolved": "https://registry.npmjs.org/@generation/icons/-/icons-1.
|
|
813
|
-
"integrity": "sha512-
|
|
811
|
+
"version": "1.1.3",
|
|
812
|
+
"resolved": "https://registry.npmjs.org/@generation/icons/-/icons-1.1.3.tgz",
|
|
813
|
+
"integrity": "sha512-rzkjWH9dWLRZtaq7TdOnZQ2KAumYV5zZBF2P0gMZu8FJV7cNyHOo++qt/Sld72EzjMytwPmxF4tltzUb/WH+bQ==",
|
|
814
814
|
"peerDependencies": {
|
|
815
815
|
"react": "*"
|
|
816
816
|
}
|