Skip to content

Commit

Permalink
feat: add tii icon.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Mar 28, 2023
1 parent 69fe5e4 commit 6a6d6d4
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ jobs:
- run: npm run sti
- run: npm run tb
- run: npm run ti
- run: npm run tii
- run: npm run tn
- run: npm run uiw
- run: npm run vl
Expand Down
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -290,3 +290,7 @@
path = icons/cci/data
url = https://github.com/Klarr-Agency/Circum-Icons.git
branch = main
[submodule "icons/tii/data"]
path = icons/tii/data
url = https://github.com/lykmapipo/themify-icons.git
branch = master
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ Collection of popular open source svg icons
| `@icongo/sti` | [![npm version](https://img.shields.io/npm/v/@icongo/sti.svg)](https://www.npmjs.com/package/@icongo/sti) | [`#preview`](https://icongo.github.io/#/icons/sti/) |
| `@icongo/tb` | [![npm version](https://img.shields.io/npm/v/@icongo/tb.svg)](https://www.npmjs.com/package/@icongo/tb) | [`#preview`](https://icongo.github.io/#/icons/tb/) |
| `@icongo/ti` | [![npm version](https://img.shields.io/npm/v/@icongo/ti.svg)](https://www.npmjs.com/package/@icongo/ti) | [`#preview`](https://icongo.github.io/#/icons/ti/) |
| `@icongo/tii` | [![npm version](https://img.shields.io/npm/v/@icongo/tii.svg)](https://www.npmjs.com/package/@icongo/tii) | [`#preview`](https://icongo.github.io/#/icons/tii/) |
| `@icongo/tn` | [![npm version](https://img.shields.io/npm/v/@icongo/tn.svg)](https://www.npmjs.com/package/@icongo/tn) | [`#preview`](https://icongo.github.io/#/icons/tn/) |
| `@icongo/uiw` | [![npm version](https://img.shields.io/npm/v/@icongo/uiw.svg)](https://www.npmjs.com/package/@icongo/uiw) | [`#preview`](https://icongo.github.io/#/icons/uiw/) |
| `@icongo/vl` | [![npm version](https://img.shields.io/npm/v/@icongo/vl.svg)](https://www.npmjs.com/package/@icongo/vl) | [`#preview`](https://icongo.github.io/#/icons/vl/) |
Expand Down
1 change: 1 addition & 0 deletions icons/tii/data
Submodule data added at 960018
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
"sti": "svgo -f icons/sti/data/images/svg -o svg/sti",
"tb": "svgo -f icons/tb/data/icons -o svg/tb",
"ti": "svgo -f icons/ti/data/src/svg -o svg/ti",
"tii": "svgo -f icons/tii/data/SVG -o svg/tii",
"tn": "node icons/tn/cpy.mjs && svgo -f icons/tn/.cache_svg -o svg/tn",
"uiw": "svgo -f icons/uiw/data/icon -o svg/uiw",
"vl": "node icons/vl/cpy.mjs && svgo -f icons/vl/.cache_svg -o svg/vl --config icons/vl/svgo.config.js",
Expand Down
8 changes: 8 additions & 0 deletions tests/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -463,19 +463,27 @@ it('scwi: does the directory exist?', async () => {
it('si: does the directory exist?', async () => {
expect(fs.existsSync(path.resolve(process.cwd(), 'icons/si/data/icons'))).toBeTruthy();
});

it('sn: does the directory exist?', async () => {
expect(fs.existsSync(path.resolve(process.cwd(), 'icons/sn/data/svg'))).toBeTruthy();
});

it('sti: does the directory exist?', async () => {
expect(fs.existsSync(path.resolve(process.cwd(), 'icons/sti/data/images/svg'))).toBeTruthy();
});

it('tb: does the directory exist?', async () => {
expect(fs.existsSync(path.resolve(process.cwd(), 'icons/tb/data/icons'))).toBeTruthy();
});

it('ti: does the directory exist?', async () => {
expect(fs.existsSync(path.resolve(process.cwd(), 'icons/ti/data/src/svg'))).toBeTruthy();
});

it('tii: does the directory exist?', async () => {
expect(fs.existsSync(path.resolve(process.cwd(), 'icons/tii/data/SVG'))).toBeTruthy();
});

it('tn: does the directory exist?', async () => {
expect(fs.existsSync(path.resolve(process.cwd(), 'icons/tn/data/src/solid'))).toBeTruthy();
expect(fs.existsSync(path.resolve(process.cwd(), 'icons/tn/data/src/outline'))).toBeTruthy();
Expand Down

0 comments on commit 6a6d6d4

Please sign in to comment.