@generation/icons 1.1.7 → 1.1.9
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 +12 -21
- package/assets/folder-user-fill.svg +3 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/packages/demo/package-lock.json +1098 -38
- package/packages/demo/package.json +4 -1
- package/packages/demo/postcss.config.js +7 -0
- package/packages/demo/src/App.jsx +1 -9
- package/packages/demo/src/components/Gallery/Gallery.jsx +441 -2589
- package/packages/demo/src/index.css +4 -7
- package/packages/demo/tailwind.config.js +130 -0
- package/scripts/create-full.mjs +71 -17
- package/src/Icons/FolderUserFill.jsx +17 -0
- package/src/Icons/index.js +1 -0
- package/packages/demo/src/App.css +0 -13
- package/packages/demo/src/components/Gallery/styles.css +0 -38
package/.circleci/config.yml
CHANGED
|
@@ -56,18 +56,21 @@ jobs:
|
|
|
56
56
|
name: Build project in a minified and transpiled version
|
|
57
57
|
command: npm run semantic-release
|
|
58
58
|
|
|
59
|
-
|
|
59
|
+
build_and_deploy_gallery:
|
|
60
60
|
docker:
|
|
61
61
|
- image: cimg/node:20.14.0
|
|
62
|
-
working_directory: ~/repo
|
|
62
|
+
working_directory: ~/repo
|
|
63
63
|
steps:
|
|
64
64
|
- checkout
|
|
65
65
|
- run:
|
|
66
66
|
name: Install @generation/icons
|
|
67
|
-
command: npm install @generation/icons@latest
|
|
68
|
-
-
|
|
69
|
-
|
|
70
|
-
|
|
67
|
+
command: cd packages/demo && npm install && npm install @generation/icons@latest && npm run build
|
|
68
|
+
- aws-s3/sync:
|
|
69
|
+
from: packages/demo/dist
|
|
70
|
+
to: 's3://icons.deployment.dev'
|
|
71
|
+
arguments: |
|
|
72
|
+
--acl public-read \
|
|
73
|
+
--cache-control "max-age=86400"
|
|
71
74
|
- persist_to_workspace:
|
|
72
75
|
root: ~/repo/packages/demo
|
|
73
76
|
paths:
|
|
@@ -80,12 +83,7 @@ jobs:
|
|
|
80
83
|
steps:
|
|
81
84
|
- attach_workspace:
|
|
82
85
|
at: "~/repo/packages/demo"
|
|
83
|
-
|
|
84
|
-
from: dist
|
|
85
|
-
to: 's3://icons.deployment.dev'
|
|
86
|
-
arguments: |
|
|
87
|
-
--acl public-read \
|
|
88
|
-
--cache-control "max-age=86400"
|
|
86
|
+
|
|
89
87
|
|
|
90
88
|
workflows:
|
|
91
89
|
version: 2
|
|
@@ -103,17 +101,10 @@ workflows:
|
|
|
103
101
|
branches:
|
|
104
102
|
only:
|
|
105
103
|
- master
|
|
106
|
-
-
|
|
107
|
-
requires:
|
|
108
|
-
- release
|
|
109
|
-
filters:
|
|
110
|
-
branches:
|
|
111
|
-
only:
|
|
112
|
-
- master
|
|
113
|
-
- deploy_to_dev:
|
|
104
|
+
- build_and_deploy_gallery:
|
|
114
105
|
context: aws-creds
|
|
115
106
|
requires:
|
|
116
|
-
-
|
|
107
|
+
- release
|
|
117
108
|
filters:
|
|
118
109
|
branches:
|
|
119
110
|
only:
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="16" viewBox="0 0 20 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M18 2H10L8 0H2C0.9 0 0.00999999 0.9 0.00999999 2L0 14C0 15.1 0.9 16 2 16H18C19.1 16 20 15.1 20 14V4C20 2.9 19.1 2 18 2ZM13 5C14.1 5 15 5.9 15 7C15 8.1 14.1 9 13 9C11.9 9 11 8.1 11 7C11 5.9 11.9 5 13 5ZM17 13H9V12C9 10.67 11.67 10 13 10C14.33 10 17 10.67 17 12V13Z" fill="black"/>
|
|
3
|
+
</svg>
|